From 1083273b9f422783a0976cba9ccd4316fd4c3860 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Fri, 13 Oct 2017 16:10:23 -0700 Subject: [PATCH] Added -f option to force rebuilds (for when the compiler changes, not the lib files). --- compile_lib.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/compile_lib.sh b/compile_lib.sh index c38cf87..30de701 100755 --- a/compile_lib.sh +++ b/compile_lib.sh @@ -1,4 +1,18 @@ #!/bin/sh +FLUSH=false +while getopts ":f" opt; do + case $opt in + f) + FLUSH=true + echo "flushing..." + ;; + esac +done +if [ "$FLUSH" = true ] ; then + for file in $(find lib/ -name "*.nom.lua") ; do + rm $file + done +fi for file in $(find lib/ -name "*.nom") ; do luafile="$file.lua" if [ ! -e "$luafile" ] || [ "$file" -nt "$luafile" ] ; then