Added warning for nomsu -c foo.lua
This commit is contained in:
parent
fb19d1af11
commit
706811fed4
@ -173,6 +173,9 @@ run = function()
|
|||||||
nomsu_environment._1_parsed(NomsuCode:from(source, code))
|
nomsu_environment._1_parsed(NomsuCode:from(source, code))
|
||||||
print("Parse succeeded: " .. tostring(filename))
|
print("Parse succeeded: " .. tostring(filename))
|
||||||
elseif args.compile then
|
elseif args.compile then
|
||||||
|
if filename:match("%.lua$") then
|
||||||
|
error("Cannot compile a lua file (expected a nomsu file as input)")
|
||||||
|
end
|
||||||
local output
|
local output
|
||||||
if filename == 'stdin' then
|
if filename == 'stdin' then
|
||||||
output = io.output()
|
output = io.output()
|
||||||
|
@ -142,6 +142,8 @@ run = ->
|
|||||||
print("Parse succeeded: #{filename}")
|
print("Parse succeeded: #{filename}")
|
||||||
elseif args.compile
|
elseif args.compile
|
||||||
-- Compile .nom files into .lua
|
-- 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()
|
output = if filename == 'stdin' then io.output()
|
||||||
else io.open(filename\gsub("%.nom$", ".lua"), "w")
|
else io.open(filename\gsub("%.nom$", ".lua"), "w")
|
||||||
code = Files.read(filename)
|
code = Files.read(filename)
|
||||||
|
Loading…
Reference in New Issue
Block a user