diff options
| author | Bruce Hill <bitbucket@bruce-hill.com> | 2018-05-03 21:55:46 -0700 |
|---|---|---|
| committer | Bruce Hill <bitbucket@bruce-hill.com> | 2018-05-03 21:55:58 -0700 |
| commit | 2abaf67b66c6a967ee51e59c7802534b07706b6b (patch) | |
| tree | b6b102485472278e2958ea31eaa4ed1278ace9be /compile_lib.sh | |
| parent | 36ead4d82bdb058229271fb742f659d47c5c48a3 (diff) | |
Fix for compile lib putting the files in the wrong place.
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 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 |
