From 5b346e6faa0b9dc6598d6c63910c7dc5377b1a20 Mon Sep 17 00:00:00 2001 From: andyjk15 Date: Fri, 26 Jun 2020 17:07:18 +0100 Subject: [PATCH] [26.06.20] Increase scripts Arg Size --- configuration/pipelines/build.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configuration/pipelines/build.groovy b/configuration/pipelines/build.groovy index fa33ce6..3b254a6 100644 --- a/configuration/pipelines/build.groovy +++ b/configuration/pipelines/build.groovy @@ -24,8 +24,8 @@ String get_application_version() { "${pom.version}-b${env.BUILD_NUMBER}" } -String executeShellScript( String shellPath, String arg1 = '', String arg2 = '', String arg3 = '', String arg4 = '' ) { - sh "./${shellPath} ${arg1} ${arg2} ${arg3} ${arg4}" +String executeShellScript( String shellPath, String arg1 = '', String arg2 = '', String arg3 = '', String arg4 = '', String arg5 = '' ) { + sh "./${shellPath} ${arg1} ${arg2} ${arg3} ${arg4} ${arg5}" } try {