mirror of
https://github.com/basecamp/omarchy.git
synced 2025-08-03 23:29:23 +00:00
New installations don't need to migrate from what's already there
This commit is contained in:
@ -28,6 +28,7 @@ show_subtext() {
|
|||||||
# Install prerequisites
|
# Install prerequisites
|
||||||
source $OMARCHY_INSTALL/preflight/aur.sh
|
source $OMARCHY_INSTALL/preflight/aur.sh
|
||||||
source $OMARCHY_INSTALL/preflight/presentation.sh
|
source $OMARCHY_INSTALL/preflight/presentation.sh
|
||||||
|
source $OMARCHY_INSTALL/preflight/migrations.sh
|
||||||
|
|
||||||
# Configuration
|
# Configuration
|
||||||
show_logo beams 240
|
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
|
Reference in New Issue
Block a user