minor change to get whisperIdentity working correctly

Stupidly forgot to add the necessary line to `cli` options.
This commit is contained in:
Andy Tudhope 2017-12-24 12:34:49 +02:00 committed by GitHub
parent e77ade9b85
commit 85dee8271f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

1
cli.js
View File

@ -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);