Add submodule update to install script
This commit is contained in:
parent
b12aa177b4
commit
258dd8ae75
2 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
1
install
1
install
|
@ -1,4 +1,5 @@
|
|||
#!/bin/sh
|
||||
|
||||
cd $(dirname "$0")
|
||||
git submodule update --init
|
||||
pipenv run -- ./install.py "$@"
|
||||
|
|
Loading…
Add table
Reference in a new issue