fix(installer): remove stale SYS_HOME reference

This commit is contained in:
Claus Lohmar 2026-06-14 16:38:22 +00:00
parent b2e1732161
commit aefffb70db

View file

@ -59,7 +59,7 @@ if [ ! -f "$REPO_DIR/src/main.go" ]; then
error "git is required. Install it first: apt install git"
exit 1
fi
CLONE_DIR="${SYS_HOME}/nextwks"
CLONE_DIR="/tmp/nextwks-build"
rm -rf "$CLONE_DIR" 2>/dev/null
git clone --depth 1 "$REPO_URL" "$CLONE_DIR"
REPO_DIR="$CLONE_DIR"