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