~dvko/dotfiles

055af72cdbb836337a829a76df6685cba3bb4c13 — Danny van Kooten 5 months ago 3195d13
forward arguments to makewatch command
1 files changed, 3 insertions(+), 3 deletions(-)

M bin/makewatch
M bin/makewatch => bin/makewatch +3 -3
@@ 2,7 2,7 @@

set -e 

while true; do \
    make $1; \
    inotifywait --quiet --recursive --event close_write .; \
while true; do 
    make "$@"
    inotifywait --quiet --recursive --event close_write .
done