mirror of
https://github.com/dlang-community/DCD.git
synced 2025-04-25 12:49:55 +03:00
Add rebuilder script
This commit is contained in:
parent
cedf8bb1d0
commit
416aa2d184
1 changed files with 13 additions and 0 deletions
13
buildloop.sh
Executable file
13
buildloop.sh
Executable file
|
@ -0,0 +1,13 @@
|
|||
while $(true);
|
||||
do
|
||||
clear
|
||||
tput bold; tput setaf 3; date; tput sgr0
|
||||
make debug -j > /dev/null
|
||||
if [[ $? -eq 0 ]]; then
|
||||
tput bold; tput setaf 2; echo "Build succes"; tput sgr0
|
||||
else
|
||||
tput bold; tput setaf 1; echo "Build failure"; tput sgr0
|
||||
fi
|
||||
|
||||
inotifywait src makefile libdparse dsymbol -r -e modify -q;
|
||||
done
|
Loading…
Add table
Add a link
Reference in a new issue