1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-01 09:10:37 +00:00
qb64/.ci/update-source.sh

10 lines
234 B
Bash
Raw Normal View History

2020-01-03 12:29:13 +00:00
#!/bin/bash
2020-01-04 11:18:31 +00:00
git config --local user.email "flukiluke@gmail.com"
git config --local user.name "Autobuild Process"
git add internal/source
2020-01-04 12:40:28 +00:00
if [[ $(git diff --cached | wc -l) -gt 0 ]]
then git commit -m "Update internal/source"
fi
2020-01-04 11:18:31 +00:00