chore: fix unbound variable in develop.sh (#19043)

Missed this in https://github.com/coder/coder/pull/18991
This commit is contained in:
Cian Johnston
2025-07-28 09:20:35 +01:00
committed by GitHub
parent 2a430ab435
commit 6bf2ec3eb1
+1 -1
View File
@@ -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