Skip html exports when syncinc wikis

main
mandlm 2020-11-06 13:50:44 +01:00
parent 88b23fa9db
commit 53b8374c75
Signed by: mandlm
GPG Key ID: 4AA25D647AA54CC7
1 changed files with 2 additions and 1 deletions

View File

@ -2,10 +2,11 @@
for wiki in ~/vimwiki/*
do
[[ $wiki =~ _html$ ]] && continue
echo Synching $wiki
git -C $wiki pull --rebase --autostash
git -C $wiki add .
git -C $wiki commit -a -n -m "Auto-update"
git -C $wiki push
echo done.
echo done synching $wiki.
done