Skip to content

Commit

Permalink
fix: add double quotes to skopeo copy params
Browse files Browse the repository at this point in the history
  • Loading branch information
StinkyBenji committed Nov 1, 2023
1 parent 05990b9 commit 61b51de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .tekton/tasks/skopeo-copy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@ spec:
#!/bin/sh
set -x
skopeo copy --src-tls-verify="$(params.srcTLSverify)" --dest-tls-verify="$(params.destTLSverify)" $(params.srcImageURL) $(params.destImageURL)
skopeo copy "$(params.srcImageURL)" "$(params.destImageURL)" --src-tls-verify="$(params.srcTLSverify)" --dest-tls-verify="$(params.destTLSverify)"

0 comments on commit 61b51de

Please sign in to comment.