Fixes lack of proxy access to download VLC files in claude's web environment.

This commit is contained in:
Vitor Pamplona
2026-03-29 21:43:54 -04:00
parent 6371f2e0d0
commit 9e21fcd2e8
+5 -2
View File
@@ -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