1
0
Fork 0
mirror of https://github.com/kou029w/dotfiles.git synced 2025-01-19 00:17:59 +00:00
dotfiles/termux/tasks/logseq-sync

10 lines
215 B
Text
Raw Normal View History

2022-10-27 01:00:00 +09:00
#!/bin/sh
set -e
2022-11-02 02:10:03 +09:00
cd ~/logseq
rsync -a ~/storage/shared/logseq/journals/ journals/
rsync -a ~/storage/shared/logseq/pages/ pages/
2022-10-27 01:00:00 +09:00
git add --all
if git commit -m update; then
2022-11-02 02:10:03 +09:00
rsync -a ./ ~/storage/shared/logseq/
2022-10-27 01:00:00 +09:00
fi