We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b36707 commit 48f67e1Copy full SHA for 48f67e1
scripts/install.py
@@ -76,7 +76,7 @@ def parse_args(answers: dict):
76
validator_mode = 'liquid-staking'
77
res += f' -m {validator_mode}'
78
else:
79
- res += f'-m {mode}'
+ res += f' -m {mode}'
80
81
if dump:
82
res += ' -d'
@@ -90,6 +90,7 @@ def main():
90
answers = run_cli()
91
command = parse_args(answers)
92
# subprocess.run('bash scripts/install.sh ' + command, shell=True)
93
+ print('bash install.sh ' + command)
94
subprocess.run('bash install.sh ' + command, shell=True)
95
96
0 commit comments