Skip to content

Commit 7fdcc2d

Browse files
committed
Check generally for buildsystem submodule updates [skip ci]
1 parent fa285e0 commit 7fdcc2d

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

build.gradle

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,7 @@ task clean(type: Delete) {
2828
delete rootProject.buildDir
2929
}
3030

31-
File buildsystem = file("buildsystem")
32-
if (!buildsystem.exists() || buildsystem.list().length == 0) {
33-
println "Initializing buildsystem..."
34-
exec {
35-
commandLine "git", "submodule", "update", "--init"
36-
}
31+
println "Checking buildsystem..."
32+
exec {
33+
commandLine "git", "submodule", "update", "--init"
3734
}

0 commit comments

Comments
 (0)