From df9a82a9711faf20c705d806fceab5c154b37f4c Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sat, 28 Apr 2018 17:08:28 -0700 Subject: Overhaul of command-line API. It's a bit cleaner now. --- compile_lib.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'compile_lib.sh') diff --git a/compile_lib.sh b/compile_lib.sh index 1776beb..6f79573 100755 --- a/compile_lib.sh +++ b/compile_lib.sh @@ -18,12 +18,12 @@ fi for file in core/*.nom; do printf "Compiling $file ..." - ./nomsu.moon -c $file + ./nomsu.moon $file -o "$(basename $file .nom).lua" echo "done." done for file in lib/*.nom; do printf "Compiling $file ..." - ./nomsu.moon -c $file + ./nomsu.moon $file -o "$(basename $file .nom).lua" echo "done." done #for file in tests/*.nom; do -- cgit v1.2.3