syncstuff/docker/prebuild.sh
2025-07-14 00:48:45 +02:00

14 lines
279 B
Bash
Executable File

#!/bin/bash
if [ -z "$SYNCTHING_ANDROID_PREBUILT" ]; then
echo "Prebuild disabled"
rm -rf syncthing-android
exit 0
fi
echo "Prepopulating gradle and go build/pkg cache"
cd syncthing-android
./gradlew --no-daemon lintDebug buildNative
cd ..
rm -rf syncthing-android