From 85dee8271fc5a3431f804856ce2a41a96e80e08a Mon Sep 17 00:00:00 2001 From: Andy Tudhope Date: Sun, 24 Dec 2017 12:34:49 +0200 Subject: [PATCH] minor change to get whisperIdentity working correctly Stupidly forgot to add the necessary line to `cli` options. --- cli.js | 1 + 1 file changed, 1 insertion(+) diff --git a/cli.js b/cli.js index 1ee67b2..1c76431 100755 --- a/cli.js +++ b/cli.js @@ -315,5 +315,6 @@ cli.version(pkgJson.version) .option("--name [name]", "Name overrides package.json seeing as spaces and caps aren't available there") .option("--dappUrl [url]", "Custom DApp URL (overrides the one from the package.json)") .option("--botUrl [url]", "Custom bot URL (overrides the one from the package.json)") + .option("--whisperIdentity [id]", "Custom Whisper Identity (overrides the one from the package.json") .option("--photoPath [url]", "Custom photo for DApp (overrides the one from the package.json)") .parse(process.argv);