From bb0313bebc32d063452328866028029d81cdee7f Mon Sep 17 00:00:00 2001 From: James Downie Date: Fri, 15 Aug 2025 08:39:16 +1000 Subject: [PATCH] Lazy commit on bender. --- jdownie/repo/repo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)