From 7c9708d647d737bd1f63d42a03824065008390ba Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sat, 31 Jan 2026 21:52:09 +0100 Subject: [PATCH] Respect rc too --- bin/omarchy-branch-set | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/omarchy-branch-set b/bin/omarchy-branch-set index f67d9174..d4aa44c8 100755 --- a/bin/omarchy-branch-set +++ b/bin/omarchy-branch-set @@ -3,7 +3,7 @@ # Set the branch for Omarchy's git repository. if (($# == 0)); then - echo "Usage: omarchy-branch-set [master|dev]" + echo "Usage: omarchy-branch-set [master|rc|dev]" exit 1 else branch="$1" @@ -11,6 +11,7 @@ fi case "$branch" in "master") git -C $OMARCHY_PATH switch master ;; + "rc") git -C $OMARCHY_PATH switch rc ;; "dev") git -C $OMARCHY_PATH switch dev ;; *) echo "Unknown branch: $branch"; exit 1; ;; esac