diff options
| author | ruki <[email protected]> | 2021-02-14 10:10:22 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2021-02-14 10:10:22 +0800 |
| commit | 6ba5ae3834b4e2e9efb0abb44576b669859abf26 (patch) | |
| tree | dc7f75fd98d58670a6f7073ba08567805d911764 /xmake/core/package/package.lua | |
| parent | d22832a1eaf691db8aae20d0d08f08a98a19d23b (diff) | |
fix require
Diffstat (limited to 'xmake/core/package/package.lua')
| -rw-r--r-- | xmake/core/package/package.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/core/package/package.lua b/xmake/core/package/package.lua index ccb4fd9e0..3e1862b0d 100644 --- a/xmake/core/package/package.lua +++ b/xmake/core/package/package.lua @@ -19,8 +19,8 @@ -- -- define module -local package = package or {} -local _instance = _instance or {} +local package = {} +local _instance = {} -- load modules local os = require("base/os") |
