Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
kiyoon committed Oct 16, 2024
1 parent 8323a7e commit cef5373
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/src/apbs_binary/executable.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def process_run(
my_env = os.environ.copy()
my_env["PATH"] = f"{BIN_DIR!s};{my_env['PATH']}"
complete_process = subprocess.run(
[bin_path(bin_name), *args], env=my_env, **kwargs
[bin_path(bin_name), *args], env=my_env, shell=True, **kwargs
)
else:
complete_process = subprocess.run([bin_path(bin_name), *args], **kwargs)
Expand Down

0 comments on commit cef5373

Please sign in to comment.