From 6bf2ec3eb1d22d7b6718e37d9a0783a4bf86b483 Mon Sep 17 00:00:00 2001 From: Cian Johnston Date: Mon, 28 Jul 2025 09:20:35 +0100 Subject: [PATCH] chore: fix unbound variable in develop.sh (#19043) Missed this in https://github.com/coder/coder/pull/18991 --- scripts/develop.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/develop.sh b/scripts/develop.sh index a83d2e5cbd..5a802735c7 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