From 76117fb8ba0ccc1e233a7e42917f59125b678ffb Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sat, 8 Aug 2026 03:12:08 -0700 Subject: [PATCH] Take mise tool updates without waiting out the release cooldown mise withholds releases younger than its cooldown, so omarchy update left tools behind for days. The mup alias already bypassed it by hand. Co-Authored-By: Claude Opus 5 (1M context) --- bin/omarchy-update-mise | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bin/omarchy-update-mise b/bin/omarchy-update-mise index 2d116e68..1e4fd4ec 100755 --- a/bin/omarchy-update-mise +++ b/bin/omarchy-update-mise @@ -4,5 +4,9 @@ if omarchy-cmd-present mise; then echo -e "\e[32m\nUpdate mise tools\e[0m" - mise up + + # mise withholds releases younger than its cooldown, so tools stay behind for + # days after they ship. Running omarchy update is the user asking for current + # versions now, which is the same call the mup alias makes by hand. + MISE_MINIMUM_RELEASE_AGE=0 mise up fi