1
0
mirror of https://github.com/Adorable-Catgirl/LuaComp.git synced 2025-04-12 22:58:18 +10:00

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: build:
@echo Building LuaComp... @echo Building LuaComp...
@${COMMAND} ./src/application.lua -O ./luacomp.lua @${COMMAND} ./src/init.lua -O ./luacomp.lua
clean: clean:
ifeq ($(OS),Windows_NT) ifeq ($(OS),Windows_NT)

View File

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