Skip to content

Commit

Permalink
Restore shell=True
Browse files Browse the repository at this point in the history
  • Loading branch information
guyer committed Oct 4, 2023
1 parent 7a50eb0 commit 9dc2a69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ntd2d/ntd2d.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def main():
if pre_build_command != "":
with gha_utils.group("Executing pre-build-command", use_subprocess=True):
gha_utils.debug(f"pre-build-command: {pre_build_command}", use_subprocess=True)
subprocess.run(pre_build_command, check=True)
subprocess.run(pre_build_command, shell=True, check=True)

with gha_utils.group("Build HTML", use_subprocess=True):
build_command = os.environ['INPUT_BUILD-HTML-COMMAND']
Expand Down

0 comments on commit 9dc2a69

Please sign in to comment.