diff --git a/scripts/gpu-operator-nvaie.sh b/scripts/gpu-operator-nvaie.sh index 519d09e58..188c6ffa2 100755 --- a/scripts/gpu-operator-nvaie.sh +++ b/scripts/gpu-operator-nvaie.sh @@ -27,7 +27,7 @@ # # 2. vGPU driver license have to be downloaded from the NVIDIA licensing portal in the current directory and saved as "client_configuration_token.tok" -set -u +set -euo pipefail NGC_API_KEY=${NGC_API_KEY:?"Missing NGC_API_KEY"} NGC_USER_EMAIL=${NGC_USER_EMAIL:?"Missing NGC_USER_EMAIL"} diff --git a/vendor/k8s.io/kubectl/pkg/util/i18n/translations/README.md b/vendor/k8s.io/kubectl/pkg/util/i18n/translations/README.md index a97180466..be327be41 100644 --- a/vendor/k8s.io/kubectl/pkg/util/i18n/translations/README.md +++ b/vendor/k8s.io/kubectl/pkg/util/i18n/translations/README.md @@ -69,10 +69,10 @@ To use translations, you simply need to add: import pkg/i18n ... // Get a translated string -translated := i18n.T("Your message in english here") +translated := i18n.T("Your message in English here") // Get a translated plural string -translated := i18n.T("You had %d items", items) +translatedPlural := i18n.T("You had %d items", items) // Translated error return i18n.Error("Something bad happened")