0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-08 02:45:26 +00:00

[Upd] clean temp code files

This commit is contained in:
Baoshuo Ren 2021-07-24 15:54:06 +08:00 committed by Baoshuo Ren
parent e35acd493f
commit 490bc0cee6
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

View File

@ -4,3 +4,7 @@ echo -e "\033[42;30m INFO \033[0m Starting to delete executables generated by co
find $(git rev-parse --show-toplevel) -name '*.exe' -type f -print -exec rm {} \;
echo -e "\033[42;30m INFO \033[0m Successfully deleted executables generated by compilation."
echo -e ""
echo -e "\033[42;30m INFO \033[0m Starting to delete temp code files."
find $(git rev-parse --show-toplevel) -name 'tempCodeRunnerFile*' -type f -print -exec rm {} \;
echo -e "\033[42;30m INFO \033[0m Successfully deleted temp code files."