From fbd20bda80dd68f5f094586d4b9f03fd3027a0a8 Mon Sep 17 00:00:00 2001 From: soxx Date: Wed, 27 Mar 2024 22:25:02 +0100 Subject: [PATCH] Build even if there are no patches --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 300ec1f..f29864b 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -15,7 +15,7 @@ echo $KEYSTORE_FILE | base64 -d > keystore.jks echo $KEYSTORE_PROPERTIES | base64 -d > keystore.properties for patch in /patches/*; do - patch -p0 < $patch + [ -e $patch ] && patch -p0 < $patch done gradle --no-daemon assembleGithub