Skip to content

Commit

Permalink
try to still make it work on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
segasai committed Jan 19, 2024
1 parent 307b03c commit 5837f5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py/minimint/mist_interpolator.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ def writer(url, pref):
f'7z x {fname_out1}')
else:
cmd = f'cd {pref}; tar xfJ {fname_out}'
ret = subprocess.run(cmd, shell=True, timeout=60)
ret = subprocess.run(cmd, shell=True, timeout=60, capture_output=True)
if ret.returncode != 0:
raise RuntimeError('Failed to untar the files' +
ret.stdout.decode() + ret.stderr.decode())
Expand Down

0 comments on commit 5837f5b

Please sign in to comment.