summaryrefslogtreecommitdiffstats
path: root/.bin/dot-sync
diff options
context:
space:
mode:
Diffstat (limited to '.bin/dot-sync')
-rwxr-xr-x.bin/dot-sync11
1 files changed, 6 insertions, 5 deletions
diff --git a/.bin/dot-sync b/.bin/dot-sync
index f12f878..f41b936 100755
--- a/.bin/dot-sync
+++ b/.bin/dot-sync
@@ -4,11 +4,11 @@ set -xe
export GIT_SSH_COMMAND="ssh -o ConnectTimeout=1 -o ConnectionAttempts=1"
-yadm stash
-yadm pull --rebase
-yadm stash pop
+yadm stash || true
+yadm pull --rebase || true
+yadm stash pop || true
-yadm add -u
+yadm add -u || true
yadm add \
"${HOME}/.bin" \
"${HOME}/.config/cmus/playlists" \
@@ -28,7 +28,8 @@ yadm add \
"${HOME}/.config/yadm" \
"${HOME}/.config/waybar" \
"${HOME}/.config/zk" \
- "${HOME}/.public-keys"
+ "${HOME}/.public-keys" \
+ || true
yadm push
remember that computers suck.