1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-03 07:41:21 +00:00
qb64/.ci/update-source.sh
2020-01-04 22:18:31 +11:00

16 lines
373 B
Bash
Executable file

#!/bin/bash
rm internal/source/*
mv internal/temp/* internal/source/
find . -type f -iname "*.a" -exec rm {} \;
find . -type f -iname "*.o" -exec rm {} \;
cd internal/source
rm debug_* recompile_*
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"