You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This one has a lot around it removed, so maybe not enough to reproduce yet? let me know
after the first section, the remaining stages all have two spaces removed from them, the diff first looked like it was removing a curly, but then I realized it just unindented a bunch of stuff
pipeline {
stages {
stage('foo') {
steps {
sh "cd src/foo && make build"
- sh "gsutil cp src/foo/bin/foo gs://bucket/foo-${BUILD_SUFFIX}"
- }
+ sh "gsutil cp src/foo/bin/foo gs: //bucket/foo-${BUILD_SUFFIX}" <<< space added
}
-
- stage('bar') {
- steps {
- sh "cd src/bar && make build"
- sh "gsutil cp src/bar gs://bucket/bar-${BUILD_SUFFIX}"
- }
+ }
+ stage('bar') {
+ steps {
+ sh "cd src/bar && make build"
+ sh "gsutil cp src/bar/bin/bar gs://bucket/bar-${BUILD_SUFFIX}" <<< no space added
}
}
... more stages here, all lost indentation, but none had the space added in gs: //....
post {
// go mods
always {
sh "sudo rm -rf $GOPATH/pkg/mod"
}
}
}
^^^ notice the two curly braces at the same indentation here
The text was updated successfully, but these errors were encountered:
This one has a lot around it removed, so maybe not enough to reproduce yet? let me know
after the first section, the remaining stages all have two spaces removed from them, the diff first looked like it was removing a curly, but then I realized it just unindented a bunch of stuff
^^^ notice the two curly braces at the same indentation here
The text was updated successfully, but these errors were encountered: