From 3cc74487a7d8bfcb44ab4b08258fe24aec12a250 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Wed, 26 Jul 2017 18:44:57 +0200 Subject: [PATCH] groups: call script directly do not use sh to call the script since it overrides any flag usage. Instead call the script directly, it's executable. Change-Id: I10f8c3dd2f3845ddb1f33f33f535caeb0381b817 --- jenkins/jobs/groups.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jenkins/jobs/groups.yaml b/jenkins/jobs/groups.yaml index 852e01f0e9..165eb19183 100644 --- a/jenkins/jobs/groups.yaml +++ b/jenkins/jobs/groups.yaml @@ -13,7 +13,7 @@ curl -L https://github.com/drush-ops/drush/archive/6.0.0.tar.gz | tar -xz -C drush --strip 1 # build distribution export PATH=./drush:$PATH - sh scripts/dev-build.sh + scripts/dev-build.sh publishers: - coverage-log - scp: @@ -42,7 +42,7 @@ curl -L https://github.com/drush-ops/drush/archive/6.0.0.tar.gz | tar -xz -C drush --strip 1 # build distribution export PATH=./drush:$PATH - sh scripts/dev-build.sh + scripts/dev-build.sh # Clean/create a tarball directory rm -rf tarballs mkdir -p tarballs