Skip to content

Commit

Permalink
fix hanging
Browse files Browse the repository at this point in the history
  • Loading branch information
segasai committed Dec 27, 2023
1 parent f25cc10 commit b4a3fb4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion py/minimint/mist_interpolator.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,8 @@ def writer(url, pref):
f'7z x {fname_out1}')
else:
cmd = f'cd {pref}; tar xfJ {fname_out}'
ret = subprocess.run(cmd, capture_output=True, shell=True, timeout=60)
#ret = subprocess.run(cmd, capture_output=True, shell=True, timeout=60)
ret = subprocess.run(cmd, shell=True, timeout=60)
if ret.returncode != 0:
raise RuntimeError('Failed to untar the files' +
ret.stdout.decode() + ret.stderr.decode())
Expand Down

0 comments on commit b4a3fb4

Please sign in to comment.