diff options
| author | ruki <[email protected]> | 2017-07-20 13:38:04 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2017-07-20 13:38:04 +0800 |
| commit | e5d685f1fdba2977986950b13dc851682d3f7bcc (patch) | |
| tree | 5725eb45128a427c625d0a54073bfdfd4ae9b770 /xmake/actions/config/main.lua | |
| parent | 37e1e4b70b3f0f29e695603f1ba5ce1fd96f7417 (diff) | |
fix config readonly mode for vs201x plugin
Diffstat (limited to 'xmake/actions/config/main.lua')
| -rw-r--r-- | xmake/actions/config/main.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/actions/config/main.lua b/xmake/actions/config/main.lua index 1a04e0942..bc7fa5fc2 100644 --- a/xmake/actions/config/main.lua +++ b/xmake/actions/config/main.lua @@ -207,7 +207,7 @@ function main() options_changed = options_changed or options_history[name] ~= value -- @note override it and mark as readonly (highest priority) - config.set(name, value, true) + config.set(name, value, {readonly = true}) end -- merge the cached configure |
