From c0be96e797bfa36a7f0e919350744fff336065e2 Mon Sep 17 00:00:00 2001 From: mcrcortex <18544518+MCRcortex@users.noreply.github.com> Date: Sun, 17 Nov 2024 22:06:18 +1000 Subject: [PATCH] fix build script if not git cloned --- build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/build.gradle b/build.gradle index a2a59b52..7b4fe72c 100644 --- a/build.gradle +++ b/build.gradle @@ -28,6 +28,7 @@ def gitCommitHash = { -> exec { commandLine 'git', 'rev-parse', '--short', 'HEAD' standardOutput = stdout + ignoreExitValue = true } return stdout.toString().trim() }