summaryrefslogtreecommitdiff
path: root/xmake/core/action/lua.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2016-02-28 14:14:25 +0800
committerruki <[email protected]>2016-02-28 14:14:25 +0800
commit5c154ce0b281f073fb6c8e475e932837da0d5117 (patch)
treeb670dfe584762f397fe466be227b09d375b1ec90 /xmake/core/action/lua.lua
parent9212146ac3d022a54f659d87fb0ecd7a7db2bee4 (diff)
hide _OPTIONS
Diffstat (limited to 'xmake/core/action/lua.lua')
-rw-r--r--xmake/core/action/lua.lua5
1 files changed, 3 insertions, 2 deletions
diff --git a/xmake/core/action/lua.lua b/xmake/core/action/lua.lua
index 76e5f7f7c..9e22eb5ee 100644
--- a/xmake/core/action/lua.lua
+++ b/xmake/core/action/lua.lua
@@ -27,6 +27,7 @@ local action_lua = action_lua or {}
local os = require("base/os")
local path = require("base/path")
local utils = require("base/utils")
+local option = require("base/option")
local config = require("base/config")
local string = require("base/string")
local tools = require("tools/tools")
@@ -36,7 +37,7 @@ local platform = require("base/platform")
function action_lua.need(name)
-- the options
- local options = xmake._OPTIONS
+ local options = option.options()
assert(options)
-- do not load config if be not given -f or -P options
@@ -58,7 +59,7 @@ end
function action_lua.done()
-- the options
- local options = xmake._OPTIONS
+ local options = option.options()
assert(options)
-- no script?