Skip to content

Commit b63b9be

Browse files
piyush-gargsavitaashture
authored andcommitted
Fix syntax error in release pipeline
This will fix the release pipeline failing because of syntax error /tekton/scripts/script-0-g58z4: line 18: syntax error near unexpected token `)'
1 parent 8f990bf commit b63b9be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.tekton/release-pipeline.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ spec:
7272
exit
7373
}
7474
stable_tag=${version%.*}.x
75-
alltags=$(for i in $(git tag -l|grep '^v'|sort -rn);do echo -n "$i,";done|sed 's/,$//'))
75+
alltags=$(for i in $(git tag -l|grep '^v'|sort -rn);do echo -n "$i,";done|sed 's/,$//')
7676
allversions="nightly,stable,$alltags"
7777
git config --global user.email "[email protected]"
7878
git config --global user.name "Pipelines as Code CI Robot"

0 commit comments

Comments
 (0)