From 9e21fcd2e82b5bbef3d1ef55f69287a6869e1d77 Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Sun, 29 Mar 2026 21:43:54 -0400 Subject: [PATCH] Fixes lack of proxy access to download VLC files in claude's web environment. --- .git-hooks/pre-push | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.git-hooks/pre-push b/.git-hooks/pre-push index 2c0dbdc27..1e9795cfc 100755 --- a/.git-hooks/pre-push +++ b/.git-hooks/pre-push @@ -12,8 +12,11 @@ echo "$JAVA_HOME" echo "$(java -version)" echo "Running test... " -./gradlew test --quiet - +if [ "${CLAUDE_CODE_REMOTE:-}" = "true" ]; then + ./gradlew test --quiet -x :desktopApp:test -x :desktopApp:upxDownload -x :desktopApp:vlcDownload +else + ./gradlew test --quiet +fi status=$? if [ "$status" = 0 ] ; then