diff options
| author | ruki <[email protected]> | 2015-05-12 08:50:21 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2015-05-12 08:50:21 +0800 |
| commit | a0185c1df5558103ca4c510036088a17bf379c94 (patch) | |
| tree | 878a6c107ffed11cb93f28d831920825ef472fe7 /xmake/scripts/action | |
| parent | 3b93e699c16862a1c29c2047425ce3d8a4827ea7 (diff) | |
add _DEFAULTS options
Diffstat (limited to 'xmake/scripts/action')
| -rw-r--r-- | xmake/scripts/action/config.lua | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/xmake/scripts/action/config.lua b/xmake/scripts/action/config.lua index d8767171b..e12ac898c 100644 --- a/xmake/scripts/action/config.lua +++ b/xmake/scripts/action/config.lua @@ -49,7 +49,7 @@ function config._save_option(file, option) for k, v in pairs(option) do -- skip --project and --file - if k ~= "project" and k ~= "file" and k ~= "verbose" and k ~= "_ACTION" then + if type(k) == "string" and not k:startswith("_") and k ~= "project" and k ~= "file" and k ~= "verbose" then -- save separator file:write(utils.ifelse(i == 0, " ", ", "), k, " = ") @@ -146,9 +146,6 @@ function config._load() -- update configs to xmake._OPTIONS xmake._OPTIONS = configs - else - -- error - utils.error("%s not found!", path) end end |
