From: Shane Jaroch Date: Fri, 16 Jan 2026 20:52:30 +0000 (-0500) Subject: squash! fixes to support installation on Termux (Android) X-Git-Url: https://git.nutra.tk/v1?a=commitdiff_plain;h=cba9b9dc50127798794b767300268ab37b3968ef;p=gamesguru%2Fgit-remote-gcrypt.git squash! fixes to support installation on Termux (Android) fix installer script gnu sed for linux tests --- diff --git a/tests/test-install-logic.sh b/tests/test-install-logic.sh index 30f4a4b..7518b91 100755 --- a/tests/test-install-logic.sh +++ b/tests/test-install-logic.sh @@ -225,8 +225,8 @@ unset DESTDIR # We copy the installer (breaking symlink) and patch it to check a nonexistent path instead of /usr/local rm -f "$INSTALLER" -cp "$REPO_ROOT/install.sh" "$INSTALLER" -sed -i 's|/usr/local|/non/existent/path|g' "$INSTALLER" +sed 's|/usr/local|/non/existent/path|g' "$REPO_ROOT/install.sh" > "$INSTALLER" +chmod +x "$INSTALLER" # Run with PREFIX set but explicit prefix unset if PREFIX="$TERMUX_PREFIX" bash "$INSTALLER" >.install_log 2>&1; then