|
@@ -36,10 +36,11 @@ pipeline {
|
|
|
}
|
|
|
steps {
|
|
|
// service_update.split()
|
|
|
- for (String item : service_update.split()) {
|
|
|
- println(item)
|
|
|
- }
|
|
|
+// for (String item : service_update.split()) {
|
|
|
echo "Updating $service_update"
|
|
|
+ service_update.split().each {
|
|
|
+ echo it
|
|
|
+ }
|
|
|
sh 'ls'
|
|
|
}
|
|
|
}
|