diff options
| -rwxr-xr-x | install (renamed from install_dotfiles) | 4 | ||||
| -rwxr-xr-x | provision | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/install_dotfiles b/install index f9b8a50..90704af 100755 --- a/install_dotfiles +++ b/install @@ -4,6 +4,10 @@ echo "Installing essential software" ./provision essential +echo "Updating submodules" + +git submodule update --init --recursive + echo "Linking runcoms" # hush login @@ -19,5 +19,6 @@ else cat ./provisioning/${command_name}_$1 | xargs ${command_name} install else echo "No provisioning recipe for $1 with $command_name" + exit 1 fi fi |