2020-04-20 11:16:52 +02:00
|
|
|
#!/bin/sh
|
2020-04-20 11:28:13 +02:00
|
|
|
wget -q -O plenum.md "https://md.ccc-mannheim.de/9vP-toraQhOONftDOFuQtw/download"
|
2020-05-13 18:44:51 +02:00
|
|
|
wget -q -O p5/plenum-2020-05-12 "https://md.ccc-mannheim.de/oirNqftnSbK2esF9xFWvaw/download"
|
2020-04-20 11:16:52 +02:00
|
|
|
|
|
|
|
if [[ $(git diff --shortstat 2> /dev/null | tail -n1) != "" ]]; then
|
|
|
|
git commit -m "bot update" *.md
|
2020-04-22 17:05:18 +02:00
|
|
|
git remote | xargs -L1 git push --all
|
2020-04-20 11:16:52 +02:00
|
|
|
fi
|
|
|
|
|