From 3631695a7fda62cef1cfc1e3411d6f26ef461cce Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Mon, 5 Jan 2026 11:03:29 +0100 Subject: [PATCH] Reinstall packages too when switching back to the stable branch --- bin/omarchy-channel-set | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/omarchy-channel-set b/bin/omarchy-channel-set index f5c675b8..f3908624 100755 --- a/bin/omarchy-channel-set +++ b/bin/omarchy-channel-set @@ -21,7 +21,7 @@ else fi case "$channel" in -"stable") omarchy-branch-set "master" && omarchy-refresh-pacman "stable" ;; +"stable") omarchy-branch-set "master" && omarchy-refresh-pacman "stable" && omarchy-reinstall-pkgs ;; "edge") omarchy-branch-set "master" && omarchy-refresh-pacman "edge" ;; "dev") omarchy-branch-set "dev" && omarchy-refresh-pacman "edge" ;; *) echo "Unknown channel: $channel"; exit 1; ;;