feat(conf): make param playground_path configurable with cli command
This commit is contained in:
parent
d2c46fbd06
commit
02b68de3e8
1 changed files with 5 additions and 0 deletions
|
@ -171,6 +171,11 @@ impl GvaCommand {
|
||||||
.msg(format!("Path ? [{}]", conf.path))
|
.msg(format!("Path ? [{}]", conf.path))
|
||||||
.default(conf.path)
|
.default(conf.path)
|
||||||
.get();
|
.get();
|
||||||
|
// playgroundPath
|
||||||
|
conf.path = input()
|
||||||
|
.msg(format!("playground path ? [{}]", conf.playground_path))
|
||||||
|
.default(conf.playground_path.clone())
|
||||||
|
.get();
|
||||||
// subscriptionsPath
|
// subscriptionsPath
|
||||||
conf.subscriptions_path = input()
|
conf.subscriptions_path = input()
|
||||||
.msg(format!(
|
.msg(format!(
|
||||||
|
|
Loading…
Add table
Reference in a new issue