From 997f8f3f8bb48be00be63dc6efcb5a1633c4e39f Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Mon, 2 Oct 2023 22:40:37 +0300 Subject: [PATCH] Update editor.ts --- scripts/commands/channels/editor.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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