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

Commit

Permalink
show make output log
Browse files Browse the repository at this point in the history
  • Loading branch information
okedeji committed Apr 29, 2024
1 parent 82ba6e9 commit 6e7b0d6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion allocmd/utilities/constants.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
cliVersion = "1.0.3"
cliVersion = "1.0.4"

6 changes: 2 additions & 4 deletions allocmd/utilities/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,11 @@ def create_worker_account(worker_name, faucet_url, type='worker'):
print(f"allora-chain directory: {allora_chain_dir}")
subprocess.run(['make', 'install'],
cwd=allora_chain_dir,
check=True,
stdout=subprocess.DEVNULL)
check=True)
subprocess.run(['make', 'init'],
cwd=allora_chain_dir,
env=env,
check=True,
stdout=subprocess.DEVNULL)
check=True)

key_path = os.path.join(os.getcwd(), f'{worker_name}.{type}.key')
with open(key_path, 'w') as file:
Expand Down

0 comments on commit 6e7b0d6

Please sign in to comment.