diff options
Diffstat (limited to 'compile_lib.sh')
| -rwxr-xr-x | compile_lib.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compile_lib.sh b/compile_lib.sh index 6f79573..71fe1ad 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 $file -o "$(basename $file .nom).lua" + ./nomsu.moon -o "$(basename $file .nom).lua" $file echo "done." done for file in lib/*.nom; do printf "Compiling $file ..." - ./nomsu.moon $file -o "$(basename $file .nom).lua" + ./nomsu.moon -o "$(basename $file .nom).lua" $file echo "done." done #for file in tests/*.nom; do |
