cli: allow `rad node config` without running node
rad node config will error if the node is not running.
Since it is a local file, allow the command to succeed if the node is not running.
1 file changed
+6
-1
bd8e0ebc
→
35cfb49c
modified radicle-cli/src/commands/node.rs
@@ -8,6 +8,7 @@ use radicle::node::config::ConnectAddress;
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -237,7 +238,7 @@ pub fn run(options: Options, ctx: impl term::Context) -> anyhow::Result<()> {
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -247,6 +248,10 @@ pub fn run(options: Options, ctx: impl term::Context) -> anyhow::Result<()> {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|