diff --git a/src/cli.ts b/src/cli.ts index e8d45fa7..c796bd69 100644 --- a/src/cli.ts +++ b/src/cli.ts @@ -25,7 +25,7 @@ const currentWorkingDirectory = cwd(); // configure commander commander .version(JSON.parse(readFileSync(resolve(__dirname, '..', 'package.json')).toString()).version) - .option('-p, --path [path]', `Path of project to add files to (${currentWorkingDirectory})`, currentWorkingDirectory) + .option('-p, --path ', `Path of project to add files to (${currentWorkingDirectory})`, currentWorkingDirectory) .option('-r, --replace', 'Whether to replace existing files or not', false) .parse(process.argv);