diff --git a/jdownie/repo/repo b/jdownie/repo/repo index 6d11ca0..1f4e1ba 100755 --- a/jdownie/repo/repo +++ b/jdownie/repo/repo @@ -98,7 +98,7 @@ def parse_yaml(file_path): return None def execute_command(command, cwd = None, dump_error = True): - command = f"/bin/bash -c '{command}'" + command = f"/usr/bin/env bash -c '{command}'" try: if cwd != None: result = subprocess.run(command, cwd=cwd, shell=True, check=True, text=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)