From 58e0b4ff7b48721440518b2693ef4c6a90ec14b9 Mon Sep 17 00:00:00 2001 From: neoapps-dev Date: Sat, 28 Mar 2026 21:56:01 +0100 Subject: [PATCH] fix: change cache dir to PWD instead of HOME --- build-linux.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-linux.sh b/build-linux.sh index 96762c81..53b269ba 100755 --- a/build-linux.sh +++ b/build-linux.sh @@ -3,7 +3,7 @@ set -euo pipefail VERSION="0.0.0" # man we're using nightly :sob: SOURCE_DIR="${1:-.}" BUILD_TYPE="${2:-Release}" -XWIN_CACHE="${XWIN_CACHE:-$HOME/.cache/xwin}" +XWIN_CACHE="${XWIN_CACHE:-$PWD/xwin}" INSTALL_DIR="${INSTALL_PREFIX:-$HOME/.local/share/evolved-lce}" RED='\033[0;31m' GREEN='\033[0;32m'