New installations don't need to migrate from what's already there
This commit is contained in:
parent
f4b684f588
commit
5fda6054ce
@ -28,6 +28,7 @@ show_subtext() {
|
||||
# Install prerequisites
|
||||
source $OMARCHY_INSTALL/preflight/aur.sh
|
||||
source $OMARCHY_INSTALL/preflight/presentation.sh
|
||||
source $OMARCHY_INSTALL/preflight/migrations.sh
|
||||
|
||||
# Configuration
|
||||
show_logo beams 240
|
||||
|
8
install/preflight/migrations.sh
Normal file
8
install/preflight/migrations.sh
Normal file
@ -0,0 +1,8 @@
|
||||
#!/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
|
Loading…
x
Reference in New Issue
Block a user