diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2019-01-14 18:00:59 -0800 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2019-01-14 18:01:06 -0800 |
| commit | 706811fed4a91d90a61530fc4c790303d41c566d (patch) | |
| tree | 595c77ad2d1d0012a77670162ce0442e38e2c334 /nomsu.moon | |
| parent | fb19d1af1155fa45a04b1f68b2254da551a3e780 (diff) | |
Added warning for nomsu -c foo.lua
Diffstat (limited to 'nomsu.moon')
| -rwxr-xr-x | nomsu.moon | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -142,6 +142,8 @@ run = -> print("Parse succeeded: #{filename}") elseif args.compile -- Compile .nom files into .lua + if filename\match("%.lua$") + error("Cannot compile a lua file (expected a nomsu file as input)") output = if filename == 'stdin' then io.output() else io.open(filename\gsub("%.nom$", ".lua"), "w") code = Files.read(filename) |
