diff --git a/scripts/commands/channels/editor.ts b/scripts/commands/channels/editor.ts index 48682ff8..0867ecf7 100644 --- a/scripts/commands/channels/editor.ts +++ b/scripts/commands/channels/editor.ts @@ -9,12 +9,12 @@ import inquirer, { QuestionCollection } from 'inquirer' program .argument('', 'Path to *.channels.xml file to edit') - .option('-c, --country ', 'Source country', 'us') + .option('-c, --country ', 'Default country (ISO 3166 code)', 'US') .parse(process.argv) const filepath = program.args[0] const programOptions = program.opts() -const defaultCountry = programOptions.country +const defaultCountry = programOptions.country.toLowerCase() const newLabel = ` [new]` let site: string