We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8d1737 commit 2978737Copy full SHA for 2978737
doctest/build.gradle
@@ -19,12 +19,9 @@ def path = project(':').projectDir
19
// plugin module, and will only build ppl in it.
20
def plugin_path = project(':doctest').projectDir
21
22
-task cloneSqlCli() {
+task cloneSqlCli(type: Exec) {
23
// clone the sql-cli repo locally
24
- def cliRepo = new File("$projectDir/sql-cli")
25
- if(!cliRepo.exists()) {
26
- exec { commandLine 'git', 'clone', 'https://github.com/opensearch-project/sql-cli.git' }
27
- }
+ commandLine 'git', 'clone', 'https://github.com/opensearch-project/sql-cli.git'
28
}
29
30
task bootstrap(type: Exec, dependsOn: ['cloneSqlCli']) {
0 commit comments