Skip to content

Commit 48f67e1

Browse files
committed
fix running installation script
1 parent 7b36707 commit 48f67e1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/install.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def parse_args(answers: dict):
7676
validator_mode = 'liquid-staking'
7777
res += f' -m {validator_mode}'
7878
else:
79-
res += f'-m {mode}'
79+
res += f' -m {mode}'
8080

8181
if dump:
8282
res += ' -d'
@@ -90,6 +90,7 @@ def main():
9090
answers = run_cli()
9191
command = parse_args(answers)
9292
# subprocess.run('bash scripts/install.sh ' + command, shell=True)
93+
print('bash install.sh ' + command)
9394
subprocess.run('bash install.sh ' + command, shell=True)
9495

9596

0 commit comments

Comments
 (0)