Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
place startup script in script dir for validator
Browse files Browse the repository at this point in the history
  • Loading branch information
okedeji committed Apr 22, 2024
1 parent 38bcb5d commit 22c1240
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion allocmd/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def validator(name=None, network=None):
if click.confirm(colored("\nWould you like to proceed?", 'white', attrs=['bold']), default=True):
cprint("\nProceeding with the creation of validator node directory...", 'green')

os.makedirs(print(f"{name}/scripts"), exist_ok=True)
os.makedirs(f"{name}/scripts", exist_ok=True)

file_configs = [
{
Expand Down
2 changes: 1 addition & 1 deletion allocmd/utilities/constants.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
cliVersion = "0.3.4"
cliVersion = "0.3.5"

0 comments on commit 22c1240

Please sign in to comment.