1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-09-18 08:22:33 +02:00

Fix osx ci not executing command in shell

This commit is contained in:
Elias Steurer 2020-10-31 20:10:28 +01:00
parent f188e6eb1c
commit b43769cc14

View File

@ -97,7 +97,7 @@ cmake_configure_command = """cmake ../
print("cmake_configure_command: %s" % cmake_configure_command)
process = subprocess.run(cmake_configure_command, capture_output=True)
process = subprocess.run(cmake_configure_command, capture_output=True,shell=True)
if process.returncode != 0:
sys.exit(process.returncode)