From 7674fadeba921eaf019834ca1e94af6c3e23fc46 Mon Sep 17 00:00:00 2001 From: Simon Frei Date: Sun, 18 Jun 2023 16:25:51 +0200 Subject: [PATCH] Undo unintended prebuild script change When bumping the SDK I mistakenly switched from buildNative to build, no idea why/how. Fixes f0762bab125d434649aa7f9796d25e94867a276e --- docker/prebuild.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/prebuild.sh b/docker/prebuild.sh index cfd029fe..a6a20692 100755 --- a/docker/prebuild.sh +++ b/docker/prebuild.sh @@ -5,6 +5,6 @@ echo "Prepopulating gradle and go build/pkg cache" git clone --recurse-submodules https://github.com/syncthing/syncthing-android cd syncthing-android -./gradlew --no-daemon lint build +./gradlew --no-daemon lint buildNative cd .. rm -rf syncthing-android