diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2015-10-20 18:25:21 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2015-10-20 18:25:21 -0200 |
commit | c7c041b2bd2ce46f4b2fadd3e571b6e100269673 (patch) | |
tree | f6604b8eab49ebdc89a0f0c4078d90fe934a7c2f /inception | |
parent | 356fed8b5490458d1e4b6b02626301c6173e7320 (diff) | |
download | apps-c7c041b2bd2ce46f4b2fadd3e571b6e100269673.tar.gz apps-c7c041b2bd2ce46f4b2fadd3e571b6e100269673.tar.bz2 |
Inception: deploy: do not hardcode home path
Diffstat (limited to 'inception')
-rwxr-xr-x | inception | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -60,12 +60,12 @@ elif [ "$1" == "deploy" ]; then # Sync apps if [ -e "$HOME/apps" ]; then - rsync -avz --delete $HOME/apps/ $REMOTE:$HOME/apps/ + rsync -avz --delete $HOME/apps/ $REMOTE:apps/ fi # Sync dotfiles if [ -e "$HOME/.dotfiles" ]; then - rsync -avz --delete $HOME/.dotfiles/ $REMOTE:$HOME/.dotfiles/ + rsync -avz --delete $HOME/.dotfiles/ $REMOTE:.dotfiles/ fi # Sync loaded modules |