From b03d7a9749ca6a4960739921b65908f16495a1a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Wilmet?= Date: Tue, 14 Jun 2016 14:46:32 +0200 Subject: [PATCH] win32: fix second path to bash.exe in *.bat script The C:/msys64/tmp/newgedit/ directory doesn't exist after stage1. Using the same bash.exe as for stage1 works fine. --- win32/make-gedit-installer.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/win32/make-gedit-installer.bat b/win32/make-gedit-installer.bat index 863805835..5c246c8db 100644 --- a/win32/make-gedit-installer.bat +++ b/win32/make-gedit-installer.bat @@ -3,7 +3,7 @@ if errorlevel 1 ( exit /b %errorlevel% ) -C:/msys64/tmp/newgedit/msys64/usr/bin/bash.exe -c "./make-gedit-installer stage2" +C:/msys64/usr/bin/bash.exe -c "./make-gedit-installer stage2" if errorlevel 1 ( exit /b %errorlevel% ) -- GitLab