mirror of
https://github.com/LukeHagar/omarchy.git
synced 2025-12-10 12:37:45 +00:00
9 lines
239 B
Bash
Executable File
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
|