oparl: ignore if nothing to commit

This commit is contained in:
Astro 2022-05-29 02:44:09 +02:00
parent 836841cba4
commit f24a079c85
1 changed files with 3 additions and 3 deletions

View File

@ -93,19 +93,19 @@ in
scrape
pushd data
find . -name \*.json -exec git add "{}" +
git commit -m update
git commit -m update || true
popd
meetings2ics data/meetings/ > data/meetings.ics
pushd data
git add meetings.ics
git commit -m "update meetings.ics"
git commit -m "update meetings.ics" || true
popd
files_extract
pushd data
find . -name \*.txt -exec git add {} +
git commit -m update\ text
git commit -m update\ text || true
git push origin master
'';
};