diff options
author | Johann Bernhardt <johann.bernhardt@tum.de> | 2021-12-12 20:42:20 +0100 |
---|---|---|
committer | Johann Bernhardt <johann.bernhardt@tum.de> | 2021-12-12 20:42:20 +0100 |
commit | 43d030e3e921fa6328e4a7cb8e0a46cc32b439b6 (patch) | |
tree | 8c3d6165f4df47db196e964a928cac7fb25f0a62 | |
parent | 1c8fd630d6654098d1820ee437d390a06e33faa0 (diff) | |
download | GT5-Unofficial-43d030e3e921fa6328e4a7cb8e0a46cc32b439b6.tar.gz GT5-Unofficial-43d030e3e921fa6328e4a7cb8e0a46cc32b439b6.tar.bz2 GT5-Unofficial-43d030e3e921fa6328e4a7cb8e0a46cc32b439b6.zip |
Fix jitpack build issues
-rw-r--r-- | addon.gradle | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/addon.gradle b/addon.gradle index 599a5cf195..69779c53f1 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("git", "submodule", "update", "--init", "--recursive", "--remote") + commandLine(projectDir.toString() + "/git", "submodule", "update", "--init", "--recursive", "--remote") } tasks.setupCIWorkspace.dependsOn initAVRcore |