From ab367b94777ae4591fedb20f6ab1ab4c478782db Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sat, 8 Aug 2026 03:15:53 -0700 Subject: [PATCH] Stop mise wrappers from waiting out the release cooldown The wrappers install and upgrade their tool on first run, so the cooldown held new versions back for days. Refresh the stubs on existing installs too, since the generator change alone only reaches fresh installs. Co-Authored-By: Claude Opus 5 (1M context) --- bin/omarchy-mise-install | 5 +++++ migrations/1786183928.sh | 3 +++ 2 files changed, 8 insertions(+) create mode 100644 migrations/1786183928.sh diff --git a/bin/omarchy-mise-install b/bin/omarchy-mise-install index cfca484a..87dc10fe 100755 --- a/bin/omarchy-mise-install +++ b/bin/omarchy-mise-install @@ -14,9 +14,14 @@ bin=${3:-$command} mkdir -p "$HOME/.local/bin" +# These tools install and upgrade on first run, so mise's release cooldown would +# hold a new version back for days after it ships. Exported rather than set on +# the install line alone, so resolving the version to execute agrees with the +# one just installed. rm -f "$HOME/.local/bin/$command" cat >"$HOME/.local/bin/$command" <