From 63b8314a5a7a2dbe31354cdf270835c89b8b2e09 Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Wed, 18 Mar 2026 11:17:31 +0200 Subject: [PATCH] fix: harden error handling and shell-agnostic mise activation - Guard x-path call to prevent PATH clobber when missing - Make husky init.sh use shell-agnostic mise activate --shims - Add fail-fast to Tier 2 install steps in dfm install all - Check brew update exit status before reporting success - Always run mise install during reset_nvim (handles bootstrap) - Use double-bracket conditional in cleanup script --- config/husky/init.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/husky/init.sh b/config/husky/init.sh index caa03ba..9a333d9 100755 --- a/config/husky/init.sh +++ b/config/husky/init.sh @@ -1,2 +1,2 @@ #!/usr/bin/env bash -eval "$(mise activate bash --shims)" +eval "$(mise activate --shims)"