From 2abaf67b66c6a967ee51e59c7802534b07706b6b Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Thu, 3 May 2018 21:55:46 -0700 Subject: Fix for compile lib putting the files in the wrong place. --- 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 71fe1ad..aad6de1 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 -o "$(basename $file .nom).lua" $file + ./nomsu.moon -o "core/$(basename $file .nom).lua" $file echo "done." done for file in lib/*.nom; do printf "Compiling $file ..." - ./nomsu.moon -o "$(basename $file .nom).lua" $file + ./nomsu.moon -o "lib/$(basename $file .nom).lua" $file echo "done." done #for file in tests/*.nom; do -- cgit v1.2.3