-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CLI: add --with-key option to setup (#516)
* add --with-key option to setup * bump version * style cleanup
- Loading branch information
Showing
6 changed files
with
102 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -100,8 +100,8 @@ interpret [email protected] {ipfsDaemonVar} cmd = | |
Version _ -> do | ||
logUser $ Version.showVersion CLI.version | ||
|
||
Setup Setup.Options {forceOS, maybeUsername, maybeEmail} -> | ||
Setup.setup forceOS maybeUsername maybeEmail | ||
Setup Setup.Options {forceOS, maybeUsername, maybeEmail, maybeKeyFile} -> | ||
Setup.setup forceOS maybeUsername maybeEmail maybeKeyFile | ||
|
||
App subCmd -> | ||
App.interpret baseCfg subCmd | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
name: fission-cli | ||
version: '2.13.0.0' | ||
version: '2.14.0.0' | ||
category: CLI | ||
author: | ||
- Brooklyn Zelenka | ||
|