Skip to content

Commit a04446c

Browse files
committed
Use bash instead of sh for tests
1 parent f0fd12e commit a04446c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/releaser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ def test_releases_basic_execution(release: str):
279279

280280
def run_async_profiler_test(test_script: str) -> bool:
281281
print(f"Execute {test_script}")
282-
cmd = f"sh '{TESTS_CODE_DIR}/test/{test_script}'"
282+
cmd = f"bash '{TESTS_CODE_DIR}/test/{test_script}'"
283283
try:
284284
subprocess.check_call(cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
285285
return True

0 commit comments

Comments
 (0)