Ensure first-run flow isn't run for existing installations

This commit is contained in:
David Heinemeier Hansson
2025-07-21 18:47:06 -04:00
parent cdc9f8606e
commit 95c6882e54

6
migrations/1753137931.sh Normal file
View File

@ -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