tests/k8s: add set -e to confidential_ksh.sh

Although the script will inherit that setting from the caller scripts,
expliciting it in the file will vanish shellcheck "warning: Use 'pushd
... || exit' or 'pushd ... || return' in case pushd fails. [SC2164]"

Signed-off-by: Wainer dos Santos Moschetta <wainersm@redhat.com>
This commit is contained in:
Wainer dos Santos Moschetta 2025-05-22 14:55:24 -03:00
parent b4adfcb3cb
commit 68d91d759a

View File

@ -6,6 +6,7 @@
#
# Provides a library to deal with the CoCo KBS
#
set -e
kubernetes_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
# shellcheck disable=1091