8 lines
196 B
Bash
8 lines
196 B
Bash
|
#!/bin/sh
|
||
|
wget -O plenum.md "https://md.ccc-mannheim.de/9vP-toraQhOONftDOFuQtw/download"
|
||
|
|
||
|
if [[ $(git diff --shortstat 2> /dev/null | tail -n1) != "" ]]; then
|
||
|
git commit -m "bot update" *.md
|
||
|
fi
|
||
|
|