From 7771b444a1014eb529c7bcdd975bd1d69c1409cf Mon Sep 17 00:00:00 2001 From: Michael Keller Date: Fri, 2 Jun 2023 01:41:39 +1200 Subject: [PATCH] Build system: Fix Windows Build Script. Fix a bug preventing the `mxe` symlink from being created. Signed-off-by: Michael Keller --- packaging/windows/create-win-installer.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/windows/create-win-installer.sh b/packaging/windows/create-win-installer.sh index 80b7d6ad9..9f18e3b6d 100644 --- a/packaging/windows/create-win-installer.sh +++ b/packaging/windows/create-win-installer.sh @@ -3,7 +3,7 @@ # this is run inside the docker container cd /__w -[ ! -d mxe ] || ln -s /win/mxe . +[ -d mxe ] || ln -s /win/mxe . # grab the version number cd subsurface