From 7620971c99cfc0e3979c777b0bf503840195b50c Mon Sep 17 00:00:00 2001 From: Daniel Scalzi Date: Mon, 6 Jul 2020 01:29:13 -0400 Subject: [PATCH] Fix minor typo. --- src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index a460bd4..3a824d5 100644 --- a/src/index.ts +++ b/src/index.ts @@ -206,13 +206,13 @@ const generateDistroCommand: yargs.CommandModule = { logger.debug(`Root set to ${argv.root}`) logger.debug(`Base Url set to ${argv.baseUrl}`) - logger.debug(`Install option set to ${argv.install}`) + logger.debug(`Install option set to ${argv.installLocal}`) logger.debug(`Invoked generate distro name ${finalName}.`) const doLocalInstall = argv.installLocal as boolean const heliosDataFolder = getHeliosDataFolder() if(doLocalInstall && heliosDataFolder == null) { - logger.error('You MUST specify HELIOS_DATA_FOLDER in your .env when using the --install option.') + logger.error('You MUST specify HELIOS_DATA_FOLDER in your .env when using the --installLocal option.') return }