From 431878a06e2ad98b4a176ec53e41ba7017869985 Mon Sep 17 00:00:00 2001 From: Cian Johnston Date: Fri, 25 Jul 2025 10:22:40 +0100 Subject: [PATCH] chore: fix unbound variable in develop.sh --- scripts/develop.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/develop.sh b/scripts/develop.sh index a83d2e5cbd57f..5a802735c7c66 100755 --- a/scripts/develop.sh +++ b/scripts/develop.sh @@ -67,7 +67,7 @@ if [ "${CODER_BUILD_AGPL:-0}" -gt "0" ] && [ "${multi_org}" -gt "0" ]; then echo '== ERROR: cannot use both multi-organizations and APGL build.' && exit 1 fi -if [ -n "${CODER_AGENT_URL}" ]; then +if [ -n "${CODER_AGENT_URL:-}" ]; then DEVELOP_IN_CODER=1 fi