Skip to content

Commit 16bddb9

Browse files
authored
Add missing parentheses
1 parent 87459c4 commit 16bddb9

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,14 @@ Pipeline Groovy script code such as
1010

1111
```groovy
1212
retry(3) {
13-
for (int i = 0; i < 10; i++) {
14-
branches["branch${i}"] = {
15-
node {
16-
retry(3) {
17-
checkout scm
13+
for (int i = 0; i < 10; i++) {
14+
branches["branch${i}"] = {
15+
node {
16+
retry(3) {
17+
checkout scm
18+
}
19+
sh 'make world'
1820
}
19-
sh 'make world'
2021
}
2122
}
2223
}

0 commit comments

Comments
 (0)