From c3b7c5b147115c65215f1fd46a970cbd823f02a3 Mon Sep 17 00:00:00 2001 From: pabloFuente Date: Fri, 30 Dec 2022 11:58:07 +0100 Subject: [PATCH] Fix KURENTO_SNAPSHOTS_URL unbound variable --- ci-scripts/commons.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci-scripts/commons.sh b/ci-scripts/commons.sh index bedf7473..e4f2aebd 100755 --- a/ci-scripts/commons.sh +++ b/ci-scripts/commons.sh @@ -106,7 +106,7 @@ if [[ "${PREPARE}" == true || "${EXECUTE_ALL}" == true ]]; then # Configure Snapshots repository - if [[ -n "${KURENTO_SNAPSHOTS_URL}" ]]; then + if [[ -n "${KURENTO_SNAPSHOTS_URL:-}" ]]; then # Cd to GITHUB_ACTIONS_ORIGINAL_WORKING_DIR only if GITHUB_ACTIONS_WORKING_DIR is set if [[ -n "${GITHUB_ACTIONS_WORKING_DIR:-}" ]]; then pushd "${GITHUB_ACTIONS_ORIGINAL_WORKING_DIR}"/ci-scripts