diff --git a/setup.py b/setup.py index f4bd632..09892c7 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def _run_bash_file(bash_file: str): if os.path.isfile(bash_file): print("Running ... ", bash_file) _ = subprocess.run(bash_file, shell=True, - executable="/bin/bash") + executable="bash") else: print("Not found ", bash_file)