Skip to content
Snippets Groups Projects
Commit 02b68de3 authored by Éloïs's avatar Éloïs
Browse files

feat(conf): make param playground_path configurable with cli command

parent d2c46fbd
Branches
Tags
No related merge requests found
Pipeline #12639 passed
......@@ -171,6 +171,11 @@ impl GvaCommand {
.msg(format!("Path ? [{}]", conf.path))
.default(conf.path)
.get();
// playgroundPath
conf.path = input()
.msg(format!("playground path ? [{}]", conf.playground_path))
.default(conf.playground_path.clone())
.get();
// subscriptionsPath
conf.subscriptions_path = input()
.msg(format!(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment