From 08a5b5b9308116c4b3f6f5f69e62efde6a32622c Mon Sep 17 00:00:00 2001 From: andyjk15 Date: Wed, 19 Feb 2020 15:09:22 +0000 Subject: [PATCH] [19.02.20] Dynamic Shell Scripts --- configuration/pipelines/build.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configuration/pipelines/build.groovy b/configuration/pipelines/build.groovy index 22c1d29..2895060 100644 --- a/configuration/pipelines/build.groovy +++ b/configuration/pipelines/build.groovy @@ -28,7 +28,7 @@ String get_application_version() { } String executeShellScript( String shellPath, String arg1 = '', String arg2 = '', String arg3 = '', String arg4 = '' ) { - sh "./${shellPath} ${arg1} ${arg2} ${arg3} ${arg4}" + sh "${shellPath} ${arg1} ${arg2} ${arg3} ${arg4}" } try {