fix: improve shell detection, curl flags, and cleanup robustness

- Use ZSH_VERSION instead of ZSH_NAME for reliable zsh detection
- Document NVIM_* env vars as optional external overrides
- Add -fsSL flags to curl for mise bootstrap
- Consolidate duplicate shellcheck directives in install-fonts.sh
- Add explicit return 0 to cleanup script helper functions
- Add actionable remediation to uv-not-found error message
This commit is contained in:
2026-03-18 15:19:33 +02:00
parent 146e57351e
commit 5f40abc58c
3 changed files with 3 additions and 2 deletions

View File

@@ -9,7 +9,7 @@ msgr run "Starting to install Python libraries"
# Ensure uv is available
if ! command -v uv &> /dev/null; then
msgr err "uv not found — install it via mise first"
msgr err "uv not found — install it via mise first (run: dfm install mise)"
exit 1
fi