From 068447fea399b3b29d2a3374999a41113e2f9b13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20Wa=C5=82ach?= Date: Tue, 24 Mar 2026 12:56:51 +0100 Subject: [PATCH] fix: disable nounset when sourcing .bashrc to handle unbound PS1 in Ubuntu-based CI image --- scripts/prep.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/prep.sh b/scripts/prep.sh index ec3a7e30725..0afb03edaf6 100755 --- a/scripts/prep.sh +++ b/scripts/prep.sh @@ -3,7 +3,7 @@ set -Eexo pipefail cd "$( dirname "${BASH_SOURCE[0]}" )/.." -set +e; source "$HOME/.bashrc"; set -e +set +u; source "$HOME/.bashrc" source "$HOME/.cargo/env" || true if [ -z "${FORCE_VERSION+x}" ]; then