1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-06-29 10:30:36 +00:00
QB64-PE/.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