From 2719db01f93e0b1e758ae7fa9aac707861875dea Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Mon, 15 Sep 2025 21:58:11 +0200 Subject: [PATCH] Separate out the bulk of omarchy-update so we can get any changes from git to it first Also run migrate after we have updated system packages --- bin/omarchy-update | 5 +---- bin/omarchy-update-perform | 8 ++++++++ 2 files changed, 9 insertions(+), 4 deletions(-) create mode 100755 bin/omarchy-update-perform diff --git a/bin/omarchy-update b/bin/omarchy-update index 79260132..3ce5e4e6 100755 --- a/bin/omarchy-update +++ b/bin/omarchy-update @@ -4,7 +4,4 @@ set -e omarchy-snapshot create || [ $? -eq 127 ] omarchy-update-git -omarchy-migrate -omarchy-update-system-pkgs -omarchy-update-restart -omarchy-update-available-reset +omarchy-update-perform diff --git a/bin/omarchy-update-perform b/bin/omarchy-update-perform new file mode 100755 index 00000000..f31e3c88 --- /dev/null +++ b/bin/omarchy-update-perform @@ -0,0 +1,8 @@ +#!/bin/bash + +set -e + +omarchy-update-available-reset +omarchy-update-system-pkgs +omarchy-migrate +omarchy-update-restart