557 files merged. Conflicts resolved: - CHANGELOG.md: took refactor/lazy-loading (session changelog) - versions.ncl: took refactor/lazy-loading (adds typedialog entries)
9 lines
574 B
Text
9 lines
574 B
Text
|
|
# export-env block removed by ADR-025 Phase 3 blocker 4.
|
|
# The former block called check_env (a pre-flight gate) and set $env.PROVISIONING_DEBUG.
|
|
# Nobody imports cmd/env.nu directly; it was only reached via the star-import chain
|
|
# from lib_provisioning/mod.nu. With that chain being emptied, this block would
|
|
# never fire at CLI start anyway. Thin handlers that need the debug flag already
|
|
# set it explicitly via `if $debug { $env.PROVISIONING_DEBUG = true }` — and
|
|
# remaining reads like `if not $env.PROVISIONING_DEBUG { ... }` are gated upstream
|
|
# by the same flag.
|