Skip to content

Commit 6b8d108

Browse files
committed
Fix exec system call for cardano-node
1 parent fd2f755 commit 6b8d108

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/adaup/commands/cardano_node.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@ def start(node_version="10.4.1", network="mainnet"):
5656
]
5757
[print(x) for x in cmd]
5858
# Replace the current process with the Cardano node command
59-
exec(cmd)
59+
os.execv(cmd[0], cmd)

0 commit comments

Comments
 (0)