From 693a40f9f23db0dcb11eb42334a61311b7697420 Mon Sep 17 00:00:00 2001 From: ilias bhallil Date: Thu, 3 Sep 2020 03:24:37 -0400 Subject: [PATCH] fix typo: readme example references variables that don't exist (#1342) --- Readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Readme.md b/Readme.md index a1d389b82..1c696aca5 100644 --- a/Readme.md +++ b/Readme.md @@ -376,8 +376,8 @@ program .version('0.1.0') .arguments(' [env]') .action(function (cmd, env) { - console.log('command:', cmdValue); - console.log('environment:', envValue || 'no environment given'); + console.log('command:', cmd); + console.log('environment:', env || 'no environment given'); }); program.parse(process.argv);