[26.06.20] Increase scripts Arg Size

This commit is contained in:
andyjk15 2020-06-26 17:07:18 +01:00
parent 33e4f4eada
commit 5b346e6faa

View File

@ -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 {