diff options
author | Krzysztof Opasiak <k.opasiak@samsung.com> | 2021-07-20 09:57:24 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-07-20 09:57:24 +0000 |
commit | 68dd3ba1c943661a3d49d117883cc3073f4829fc (patch) | |
tree | c7d67b007b98cd1ed4569b0a18eef50579cff103 /kubernetes/contrib | |
parent | 4c54eee74a51eaff276dfee8e05e6ee2b64e12bf (diff) | |
parent | bd60082c573ba7b741beec6a9844fd5ecb9a0d53 (diff) |
Merge "[COMMON] Fix read -s, echo -e and $'...' bashisms"
Diffstat (limited to 'kubernetes/contrib')
-rwxr-xr-x | kubernetes/contrib/tools/check-for-staging-images.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kubernetes/contrib/tools/check-for-staging-images.sh b/kubernetes/contrib/tools/check-for-staging-images.sh index 8c01312fa2..543e918cfa 100755 --- a/kubernetes/contrib/tools/check-for-staging-images.sh +++ b/kubernetes/contrib/tools/check-for-staging-images.sh @@ -40,7 +40,7 @@ printf "\n" if [ -n "$NOT_AVAILABLE_IMAGES" ]; then echo "[ERROR] Only release images are allowed in helm charts." echo "[ERROR] Images not found in release repo:" - echo -e "$NOT_AVAILABLE_IMAGES" + printf "%b$NOT_AVAILABLE_IMAGES\n" exit 1 fi -exit 0
\ No newline at end of file +exit 0 |