Skip to content

Commit

Permalink
Merge pull request #3511 from earboxer/setup-py-use-sh
Browse files Browse the repository at this point in the history
Setup.py: Use sh instead of bash
  • Loading branch information
lpugin authored Sep 11, 2023
2 parents 5ed202a + e084af3 commit ff934e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def get_commit():
"""Call tools/get_git_commit.sh on any platform."""
if os.path.exists('./tools'):
print('running tools/get_git_commit.sh')
os.system('bash -c "cd tools; ./get_git_commit.sh"')
os.system('sh -c "cd tools; ./get_git_commit.sh"')
else:
print('tools directory is missing')

Expand Down

0 comments on commit ff934e3

Please sign in to comment.