From 32a82dd15b81e77c212ed4181b58b05d3fb7a4ec 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 cbba15dd..235ee146 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 --depth=1 "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