From 29b90470ce6740f2c6efa667d526e8381233f9e0 Mon Sep 17 00:00:00 2001 From: Shane Jaroch Date: Sat, 17 Jan 2026 01:49:26 -0500 Subject: [PATCH] fixes --- .github/workflows/termux-android.yml | 8 ++++---- tests/system-test-clean-repack.sh | 2 ++ 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/termux-android.yml b/.github/workflows/termux-android.yml index 6858871..828bc1e 100644 --- a/.github/workflows/termux-android.yml +++ b/.github/workflows/termux-android.yml @@ -34,8 +34,8 @@ jobs: -w /data \ --entrypoint /system/bin/sh \ termux/termux-docker:latest \ - -c "export PATH=/data/data/com.termux/files/usr/bin:$PATH; \ - pkg update && pkg install -y git make \ - && make install - && make check/install + -c "export PATH=/data/data/com.termux/files/usr/bin:$PATH; \\ + pkg update && pkg install -y git make \\ + && make install \\ + && make check/install \\ && git-remote-gcrypt --version" diff --git a/tests/system-test-clean-repack.sh b/tests/system-test-clean-repack.sh index 1af0536..f4884a6 100755 --- a/tests/system-test-clean-repack.sh +++ b/tests/system-test-clean-repack.sh @@ -131,6 +131,8 @@ git config user.email "test@test.com" git config user.name "Test User" git commit -m "Inject unencrypted garbage" git push origin master +HEAD_SHA=$(git rev-parse HEAD) +echo "Backend SHA before clean: $HEAD_SHA" # Verify garbage exists cd "$REPO_DIR" -- 2.52.0