mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
Make it clear what installer we are running at a given moment
This commit is contained in:
@@ -5,7 +5,10 @@ set -e
|
||||
trap 'echo "Omarchy installation failed! You can retry by running: source ~/.local/share/omarchy/install.sh"' ERR
|
||||
|
||||
# Install everything
|
||||
for f in ~/.local/share/omarchy/install/*.sh; do source "$f"; done
|
||||
for f in ~/.local/share/omarchy/install/*.sh; do
|
||||
echo -e "\nRunning installer: $f"
|
||||
source "$f"
|
||||
done
|
||||
|
||||
# Ensure locate is up to date now that everything has been installed
|
||||
sudo updatedb
|
||||
|
||||
Reference in New Issue
Block a user