From 9b4a411e5bdb9d08d1b82f564e2461d2e0f603d3 Mon Sep 17 00:00:00 2001 From: Ryan Hughes Date: Thu, 14 May 2026 13:18:46 -0400 Subject: [PATCH] Pin omarchy-reinstall-git to master branch GitHub's default branch on basecamp/omarchy is no longer master, so a plain clone pulls the development branch. Pass --branch master so reinstalls always land on stable regardless of repo default. --- bin/omarchy-reinstall-git | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/omarchy-reinstall-git b/bin/omarchy-reinstall-git index 308d67c8..c62797c1 100755 --- a/bin/omarchy-reinstall-git +++ b/bin/omarchy-reinstall-git @@ -6,6 +6,6 @@ set -e # Reinstall the Omarchy configuration directory from the git source. -git clone "https://github.com/basecamp/omarchy.git" ~/.local/share/omarchy-new >/dev/null +git clone --depth=1 --branch master "https://github.com/basecamp/omarchy.git" ~/.local/share/omarchy-new >/dev/null mv $OMARCHY_PATH ~/.local/share/omarchy-old mv ~/.local/share/omarchy-new $OMARCHY_PATH