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