aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohann Bernhardt <johann.bernhardt@tum.de>2021-12-12 20:53:59 +0100
committerJohann Bernhardt <johann.bernhardt@tum.de>2021-12-12 20:53:59 +0100
commitb69a60edc75b8a525d64590e1c9416d7942659fa (patch)
treee35bda5ef10175e1e8e2af2281aac67ebc0dafd6
parent43d030e3e921fa6328e4a7cb8e0a46cc32b439b6 (diff)
downloadGT5-Unofficial-b69a60edc75b8a525d64590e1c9416d7942659fa.tar.gz
GT5-Unofficial-b69a60edc75b8a525d64590e1c9416d7942659fa.tar.bz2
GT5-Unofficial-b69a60edc75b8a525d64590e1c9416d7942659fa.zip
Next attempt to fix jitpack
-rw-r--r--addon.gradle2
1 files changed, 1 insertions, 1 deletions
diff --git a/addon.gradle b/addon.gradle
index 69779c53f1..95eb3194c2 100644
--- a/addon.gradle
+++ b/addon.gradle
@@ -5,7 +5,7 @@ sourceSets.main {
task initAVRcore(type: Exec) {
description = "Updates (and inits) git submodules"
group = "Build Setup"
- commandLine(projectDir.toString() + "/git", "submodule", "update", "--init", "--recursive", "--remote")
+ commandLine("git", "--git-dir=\"" + projectDir.toString() + "/.git\"", "submodule", "update", "--init", "--recursive", "--remote")
}
tasks.setupCIWorkspace.dependsOn initAVRcore