Compare commits

..

3 Commits

Author SHA1 Message Date
copilot-swe-agent[bot] ad94016835 Clarify DISABLE_UPDATE default value 2026-06-23 04:29:01 +00:00
copilot-swe-agent[bot] f9abae77a4 Handle unset DISABLE_UPDATE safely in build.func 2026-06-23 04:28:34 +00:00
copilot-swe-agent[bot] 8cbdd0ac4d Fix unset DISABLE_UPDATE handling in build prompt guard 2026-06-23 04:27:39 +00:00
+2 -1
View File
@@ -5722,7 +5722,8 @@ create_lxc_container() {
return 0
fi
if [[ "${PHS_SILENT:-0}" == "1" || "${DISABLE_UPDATE,,}" == "yes" ]]; then
local _disable_update="${DISABLE_UPDATE:-no}"
if [[ "${PHS_SILENT:-0}" == "1" || "${_disable_update,,}" == "yes" ]]; then
msg_info "Skipping host LXC stack upgrade prompt (unattended mode)"
return 2
fi