aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/contrib
diff options
context:
space:
mode:
authorGuillaume Lambert <guillaume.lambert@orange.com>2021-03-11 21:53:21 +0100
committerKrzysztof Opasiak <k.opasiak@samsung.com>2021-06-29 08:30:09 +0000
commitbd60082c573ba7b741beec6a9844fd5ecb9a0d53 (patch)
tree4d76104e5c3de7f5f5f360131000237c4b8eb4c7 /kubernetes/contrib
parent0fae0aa8378794316c1a1ddd50397a2c6ebc12df (diff)
[COMMON] Fix read -s, echo -e and $'...' bashisms
pointed out by checkbashisms. Issue-ID: OOM-2643 Signed-off-by: Guillaume Lambert <guillaume.lambert@orange.com> Change-Id: I527f9b8dcad98a5dd9eb30390d26c95c1d918c09
Diffstat (limited to 'kubernetes/contrib')
-rwxr-xr-xkubernetes/contrib/tools/check-for-staging-images.sh4
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