From cca6c0dcfb6a15fba35e49fa6431618d4f4104a1 Mon Sep 17 00:00:00 2001 From: Bert van der Weerd Date: Wed, 23 Feb 2022 22:06:18 +0100 Subject: [PATCH] bugfix --- assets/update-version.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/update-version.py b/assets/update-version.py index ef57b49..fd7e631 100755 --- a/assets/update-version.py +++ b/assets/update-version.py @@ -26,7 +26,7 @@ def native(cmd,exit_on_fail = True,do_print=True): def bash(cmd,exit_on_fail = True,do_print=True): tmp = [] - tmp += ['c:/mozilla-build/msys/bin/bash.exe', '-c', cmd] + tmp += ['d:/mozilla-build/msys/bin/bash.exe', '-c', cmd] sys.stdout.flush() if do_print: print(cmd) @@ -39,7 +39,7 @@ def bash(cmd,exit_on_fail = True,do_print=True): def exec(cmd,exit_on_fail = True, do_print=True): _native = False - if not os.path.isfile('c:/mozilla-build/msys/bin/bash.exe'): + if not os.path.isfile('d:/mozilla-build/msys/bin/bash.exe'): _native = True if _native: return native(cmd,exit_on_fail,do_print)