From 2ed7e7ef98c4fa5b7f136a6453a3341228ef2d12 Mon Sep 17 00:00:00 2001 From: eyedeekay Date: Mon, 19 Feb 2024 16:48:59 -0500 Subject: [PATCH] work around error that happens in nsis --- buildscripts/zip.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildscripts/zip.sh b/buildscripts/zip.sh index ab034a8..ac65465 100755 --- a/buildscripts/zip.sh +++ b/buildscripts/zip.sh @@ -1,7 +1,7 @@ #! /usr/bin/env bash SCRIPT_DIR=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd -P)/.. -cd "$SCRIPT_DIR" || exit 1 +cd "$SCRIPT_DIR" || cd ../ || SCRIPT_DIR=$(pwd) . "$SCRIPT_DIR/config.sh"