diff --git a/install.sh b/install.sh index 15c7aae..ee2dd63 100755 --- a/install.sh +++ b/install.sh @@ -1,6 +1,11 @@ #!/usr/bin/env bash +# Install my dotfiles on a variety of systems -echo "CURRENT LOCATION: $PWD" +set -ex + +echo "PWD: $PWD" +# Coder dotfiles (and most other ways of doing this) will not do a recursive clone, so do that in install script. +git submodules update echo "Installing dotfiles..." if [ -f /etc/os-release ]; then @@ -28,6 +33,6 @@ else fi # Apply the dotfiles with stow -echo "RUNNING APPLY DOTFILES" +echo "Running apply dotfiles" ./apply-dotfiles -echo "RAN APPLY DOTFILES" +echo "Dotfiles applied successfully"