From 95c6882e546b1094b7b0326db53c155675884c9e Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Mon, 21 Jul 2025 18:47:06 -0400 Subject: [PATCH] Ensure first-run flow isn't run for existing installations --- migrations/1753137931.sh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 migrations/1753137931.sh diff --git a/migrations/1753137931.sh b/migrations/1753137931.sh new file mode 100644 index 0000000..63f816a --- /dev/null +++ b/migrations/1753137931.sh @@ -0,0 +1,6 @@ +echo "Ensure first-run flow isn't run for existing installations" + +if [[ ! -f ~/.local/state/omarchy/after-first-run.mode ]]; then + mkdir -p ~/.local/state/omarchy + touch ~/.local/state/omarchy/after-first-run.mode +fi