From b06a2b28488bb0a81653c0e139e53d6d817c7435 Mon Sep 17 00:00:00 2001 From: Nicolas Ramz Date: Sun, 22 Mar 2020 21:57:20 +0100 Subject: [PATCH] Fix --cwd CLI option description 'run target script as ' -> 'run target script from path ' --- lib/binaries/CLI.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/binaries/CLI.js b/lib/binaries/CLI.js index 430a05296..3348d56d3 100644 --- a/lib/binaries/CLI.js +++ b/lib/binaries/CLI.js @@ -57,7 +57,7 @@ commander.version(pkg.version) .option('--uid ', 'run target script with rights') .option('--gid ', 'run target script with rights') .option('--namespace ', 'start application within specified namespace') - .option('--cwd ', 'run target script as ') + .option('--cwd ', 'run target script from path ') .option('--hp ', 'define home path when generating startup script') .option('--wait-ip', 'override systemd script to wait for full internet connectivity to launch pm2') .option('--service-name ', 'define service name when generating startup script')