1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-02 21:11:22 +00:00

Only update source on change

This commit is contained in:
Luke Ceddia 2020-01-04 23:40:28 +11:00
parent 39f22a41b5
commit a3e4a2c2bb

View file

@ -11,5 +11,7 @@ cd ../..
git config --local user.email "flukiluke@gmail.com"
git config --local user.name "Autobuild Process"
git add internal/source
git commit -m "Update internal/source"
if [[ $(git diff --cached | wc -l) -gt 0 ]]
then git commit -m "Update internal/source"
fi