From 258dd8ae75944530b59beba57085c3a09a7fa844 Mon Sep 17 00:00:00 2001 From: Adam Gausmann Date: Tue, 29 Jan 2019 16:31:48 -0600 Subject: [PATCH] Add submodule update to install script --- README.md | 2 +- install | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d6e9117..dc0f37c 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/install b/install index a6d10dd..9a3fe1d 100755 --- a/install +++ b/install @@ -1,4 +1,5 @@ #!/bin/sh cd $(dirname "$0") +git submodule update --init pipenv run -- ./install.py "$@"