omarchy/install/preflight/migrations.sh
David Heinemeier Hansson 0a0843c7ec Follow convention
2025-08-25 09:30:28 +02:00

9 lines
239 B
Bash
Executable File

#!/bin/bash
OMARCHY_MIGRATIONS_STATE_PATH=~/.local/state/omarchy/migrations
mkdir -p $OMARCHY_MIGRATIONS_STATE_PATH
for file in ~/.local/share/omarchy/migrations/*.sh; do
touch "$OMARCHY_MIGRATIONS_STATE_PATH/$(basename "$file")"
done