diff options
Diffstat (limited to 'inception')
-rwxr-xr-x | inception | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -22,6 +22,7 @@ function inception_init { cd $DIRNAME echo "Initializing submodules..." + $GIT submodule sync --recursive $GIT submodule update --init --recursive if [ ! -e "$HOME/.dotfiles" ]; then @@ -134,7 +135,11 @@ function inception_fetch { # Merge function inception_merge { - ( cd $DIRNAME && $GIT merge origin/master && $GIT submodule update --init --recursive ) + ( + cd $DIRNAME && $GIT merge origin/master && \\ + $GIT submodule sync --recursive && \\ + $GIT submodule update --init --recursive + ) } # Main |