summaryrefslogtreecommitdiff
path: root/make/bootstrap.lua
diff options
context:
space:
mode:
Diffstat (limited to 'make/bootstrap.lua')
-rw-r--r--make/bootstrap.lua8
1 files changed, 3 insertions, 5 deletions
diff --git a/make/bootstrap.lua b/make/bootstrap.lua
index 77f1a4d0..42e34890 100644
--- a/make/bootstrap.lua
+++ b/make/bootstrap.lua
@@ -11,10 +11,6 @@ while true do
i = i + 1
end
-if arg[i] == nil then
- return
-end
-
for j = -1, #arg do
arg[j - i] = arg[j]
end
@@ -38,4 +34,6 @@ package.path = table.concat({
root .. "/script/?.lua",
root .. "/script/?/init.lua",
}, ";")
-assert(loadfile(arg[0]))(table.unpack(arg))
+
+local main = arg[0] or 'main.lua'
+assert(loadfile(main))(table.unpack(arg))