diff options
| author | Johann Bernhardt <johann.bernhardt@tum.de> | 2021-12-12 21:21:02 +0100 |
|---|---|---|
| committer | Johann Bernhardt <johann.bernhardt@tum.de> | 2021-12-12 21:21:02 +0100 |
| commit | cb309b464c5b2f8cbf0397a3b004075e1712db2e (patch) | |
| tree | 30955b0a24eb10fb47e2355e97cbc1bced4e06d6 | |
| parent | 4811fcee11618186577744a3dfa204e88825cfc9 (diff) | |
| download | GT5-Unofficial-cb309b464c5b2f8cbf0397a3b004075e1712db2e.tar.gz GT5-Unofficial-cb309b464c5b2f8cbf0397a3b004075e1712db2e.tar.bz2 GT5-Unofficial-cb309b464c5b2f8cbf0397a3b004075e1712db2e.zip | |
Attempt #4
| -rw-r--r-- | addon.gradle | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/addon.gradle b/addon.gradle index 18665018d5..bd761b0518 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("cmd", "git", "--git-dir=\"" + projectDir.toString() + "/.git\"", "submodule", "update", "--init", "--recursive", "--remote") + commandLine 'git', '--git-dir="' + projectDir.toString() + '\\.git"', 'submodule', 'update', '--init', '--recursive', '--remote' } tasks.setupCIWorkspace.dependsOn initAVRcore |
