From 37be0d74b1d5ff4e8bef0d87a8337375dd5f28d1 Mon Sep 17 00:00:00 2001 From: Pwny Tail Date: Wed, 8 Dec 2021 13:51:23 +0000 Subject: [PATCH] reduce executable to bash --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)