1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-06-29 05:50:41 +00:00
qb64/.ci/update-source.sh

10 lines
234 B
Bash
Executable file

#!/bin/bash
git config --local user.email "flukiluke@gmail.com"
git config --local user.name "Autobuild Process"
git add internal/source
if [[ $(git diff --cached | wc -l) -gt 0 ]]
then git commit -m "Update internal/source"
fi