From 416aa2d18478dfe43dc1976ab856abe751e74f7f Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Mon, 3 Aug 2015 16:41:02 -0700 Subject: [PATCH] Add rebuilder script --- buildloop.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 buildloop.sh diff --git a/buildloop.sh b/buildloop.sh new file mode 100755 index 0000000..2431dcc --- /dev/null +++ b/buildloop.sh @@ -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