From 351b53b1778017a8e78dff316e0c97c56b76ffbe Mon Sep 17 00:00:00 2001 From: Harald Musum Date: Tue, 17 Oct 2023 13:13:00 +0200 Subject: Quote sanitizer env var Suspected that this could lead to ccache being saved for sanitizer, which does not seems to be the case after closer inspection. I guess quoting is good anyway --- screwdriver.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/screwdriver.yaml b/screwdriver.yaml index 6efb9145b09..a3eedc02999 100644 --- a/screwdriver.yaml +++ b/screwdriver.yaml @@ -34,7 +34,7 @@ shared: du -sh /tmp/vespa/* if [[ -z "$SD_PULL_REQUEST" ]]; then - if [[ -z $VESPA_USE_SANITIZER ]] || [[ $VESPA_USE_SANITIZER == null ]]; then + if [[ -z "$VESPA_USE_SANITIZER" ]] || [[ "$VESPA_USE_SANITIZER" == null ]]; then # Remove what we have produced rm -rf $LOCAL_MVN_REPO/com/yahoo rm -rf $LOCAL_MVN_REPO/ai/vespa -- cgit v1.2.3