diff options
Diffstat (limited to 'addon.gradle')
-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 |