I mistook application.lua for the main file. Fixed

This commit is contained in:
Atirut Wattanamongkol 2021-04-16 18:17:47 +07:00
parent 6fd6b55a48
commit ff2481093d
2 changed files with 1 additions and 2 deletions

View File

@ -9,7 +9,7 @@ endif
build:
@echo Building LuaComp...
@${COMMAND} ./src/application.lua -O ./luacomp.lua
@${COMMAND} ./src/init.lua -O ./luacomp.lua
clean:
ifeq ($(OS),Windows_NT)

View File

@ -15,7 +15,6 @@ end
--#include "src/directive_provider.lua"
--#include "src/cfg/minifier_providers.lua"
local argparse = require("argparse")
local parser = argparse(arg[0], "LuaComp v"..LUACOMP_VERSION.."\nA preprocessor+postprocessor written in Lua.")
parser:argument("input", "Input file (- for STDIN)")
parser:option("-O --output", "Output file. (- for STDOUT)", "-")