diff options
author | Johann Bernhardt <johann.bernhardt@tum.de> | 2021-12-12 20:53:59 +0100 |
---|---|---|
committer | Johann Bernhardt <johann.bernhardt@tum.de> | 2021-12-12 20:53:59 +0100 |
commit | b69a60edc75b8a525d64590e1c9416d7942659fa (patch) | |
tree | e35bda5ef10175e1e8e2af2281aac67ebc0dafd6 | |
parent | 43d030e3e921fa6328e4a7cb8e0a46cc32b439b6 (diff) | |
download | GT5-Unofficial-b69a60edc75b8a525d64590e1c9416d7942659fa.tar.gz GT5-Unofficial-b69a60edc75b8a525d64590e1c9416d7942659fa.tar.bz2 GT5-Unofficial-b69a60edc75b8a525d64590e1c9416d7942659fa.zip |
Next attempt to fix jitpack
-rw-r--r-- | addon.gradle | 2 |
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 |