summaryrefslogtreecommitdiff
path: root/platform/android/gradle/gradle-update-vendor-modules.gradle
blob: e215450ec1d9c4d6531ab2f5299425f4c5a4d3ce (plain)
1
2
3
4
5
6
7
8
task updateVendorSubmodules {
    doLast {
        exec {
            workingDir = "${rootDir}"
            commandLine "git", "submodule", "update", "--init", "vendor"
        }
    }
}