From cc9e5b1a562e79276ca31ca4aacd5ea6ad8c9830 Mon Sep 17 00:00:00 2001 From: "Zaiming (Stone) Shi" Date: Wed, 30 Nov 2022 14:01:26 +0100 Subject: [PATCH] ci(scripts/ct/run.sh): fix undefined vars when runing ct for non-docker --- scripts/ct/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ct/run.sh b/scripts/ct/run.sh index edfaf6a9e..5a2cce036 100755 --- a/scripts/ct/run.sh +++ b/scripts/ct/run.sh @@ -83,7 +83,7 @@ if [ -f "$DOCKER_CT_ENVS_FILE" ]; then # shellcheck disable=SC2002 CT_DEPS="$(cat "$DOCKER_CT_ENVS_FILE" | xargs)" fi -CT_DEPS="${ERLANG_CONTAINER} ${CT_DEPS}" +CT_DEPS="${ERLANG_CONTAINER} ${CT_DEPS:-}" FILES=( )