diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2017-09-18 15:36:42 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2017-09-18 15:36:42 -0300 |
commit | f157982caeaa3f862e384a8b4b4cbc629546771a (patch) | |
tree | b4e28586c041931ceaf2b1da1538a612c29488f4 | |
parent | be061ab19af6e03a41f71c0c3eb41535cc93aaf0 (diff) | |
download | apps-f157982caeaa3f862e384a8b4b4cbc629546771a.tar.gz apps-f157982caeaa3f862e384a8b4b4cbc629546771a.tar.bz2 |
Adds stowpkg
-rw-r--r-- | .gitmodules | 3 | ||||
-rwxr-xr-x | inception | 3 | ||||
m--------- | stowpkg | 0 |
3 files changed, 5 insertions, 1 deletions
diff --git a/.gitmodules b/.gitmodules index 41d4e24..e900389 100644 --- a/.gitmodules +++ b/.gitmodules @@ -91,3 +91,6 @@ [submodule "adb-sync"] path = adb-sync url = https://github.com/google/adb-sync +[submodule "stowpkg"] + path = stowpkg + url = https://git.fluxo.info/stowpkg @@ -6,6 +6,7 @@ # Parameters BASENAME="`basename $0`" DIRNAME="$(cd `dirname $0` &> /dev/null && pwd)" +EXCLUDES="--exclude=stowpkg/tree" # Make sure we're running git directly and not any existing wrapper GIT="/usr/bin/git" @@ -94,7 +95,7 @@ function inception_deploy { # Sync apps if [ -e "$HOME/apps" ]; then - rsync -avz --delete $HOME/apps/ $REMOTE:apps/ + rsync -avz --delete $EXCLUDES $HOME/apps/ $REMOTE:apps/ fi # Sync dotfiles diff --git a/stowpkg b/stowpkg new file mode 160000 +Subproject 64af5fc72e357fcb82bda05782b5b86628ce277 |