Skip to content

Commit cf22394

Browse files
Spencerspalger
andauthored
pass script to bash to support scripts which aren't actually executable (#96198)
Co-authored-by: spalger <spalger@users.noreply.github.com>
1 parent 763c003 commit cf22394

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

vars/runbld.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
def call(script, label, enableJunitProcessing = false) {
2-
def extraConfig = enableJunitProcessing ? "" : "--config ${env.WORKSPACE}/kibana/.ci/runbld_no_junit.yml"
2+
// def extraConfig = enableJunitProcessing ? "" : "--config ${env.WORKSPACE}/kibana/.ci/runbld_no_junit.yml"
33

44
sh(
5-
script: "/usr/local/bin/runbld -d '${pwd()}' ${extraConfig} ${script}",
5+
script: "bash ${script}",
66
label: label ?: script
77
)
88
}

0 commit comments

Comments
 (0)