diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2017-08-20 14:11:27 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2017-08-20 14:11:27 -0300 |
commit | 83963a3b52484d59f144e0c930c2f13af8eaae36 (patch) | |
tree | 67d2aa23cdc9c31a85257798f738792a3a03a6c6 | |
parent | 26e75d77b310921579be64634f500f6897733a71 (diff) | |
download | apps-83963a3b52484d59f144e0c930c2f13af8eaae36.tar.gz apps-83963a3b52484d59f144e0c930c2f13af8eaae36.tar.bz2 |
Inception: sync submodules
-rwxr-xr-x | inception | 7 | ||||
m--------- | metadot | 0 |
2 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 diff --git a/metadot b/metadot -Subproject ad35aca0019ff3624f48f5148e2cffc2c0b58ac +Subproject b21f57a3214055c88dafc1fd9332d75bf82519b |