Add submodule update to install script

This commit is contained in:
Adam Gausmann 2019-01-29 16:31:48 -06:00
parent b12aa177b4
commit 258dd8ae75
2 changed files with 2 additions and 1 deletions

View file

@ -10,7 +10,7 @@ My personal dotfiles and configurations, generated from templates with Mako!
- `install.py` - The script that generates and installs the templates. (Requires Mako)
- `install` - Wraps a call to `pipenv run install.py`
- `install` - Updates submodules and runs `pipenv run install.py "$@"`.
## How it Works

View file

@ -1,4 +1,5 @@
#!/bin/sh
cd $(dirname "$0")
git submodule update --init
pipenv run -- ./install.py "$@"