From 657eb6d953a1b470ec76a1f8ae51c22ad22fa725 Mon Sep 17 00:00:00 2001 From: Kim Biesbjerg Date: Sat, 10 Dec 2016 03:36:28 +0100 Subject: [PATCH] Change cli description for output --- src/cli/extract.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/extract.ts b/src/cli/extract.ts index 200f27c..7742203 100755 --- a/src/cli/extract.ts +++ b/src/cli/extract.ts @@ -13,7 +13,7 @@ import * as cli from 'cli'; const options = cli.parse({ dir: ['d', 'Directory path you would like to extract strings from', 'dir', process.env.PWD], - output: ['o', 'Directory path you would like to save extracted strings', 'dir', process.env.PWD], + output: ['o', 'Directory path you would like to save extracted strings to', 'dir', process.env.PWD], format: ['f', 'Output format', ['json', 'pot'], 'json'], replace: ['r', 'Replace the contents of output file if it exists (merging by default)', 'boolean', false], clean: ['c', 'Remove unused keys when merging', 'boolean', false]