diff options
| author | ruki <[email protected]> | 2020-02-26 22:39:41 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2020-02-26 09:58:08 +0800 |
| commit | ae147a11648130c6c609763a4fb4f0694fba80c5 (patch) | |
| tree | 108b045023fcf667a7b8a063b82d6058490fbbd1 | |
| parent | ad15bd3efa81795baf0b99f69c9150b1763647c2 (diff) | |
fix os.subarch
| -rw-r--r-- | xmake/core/sandbox/modules/os.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xmake/core/sandbox/modules/os.lua b/xmake/core/sandbox/modules/os.lua index 010318473..da79d2270 100644 --- a/xmake/core/sandbox/modules/os.lua +++ b/xmake/core/sandbox/modules/os.lua @@ -36,6 +36,7 @@ local sandbox_os = sandbox_os or {} sandbox_os.host = os.host sandbox_os.arch = os.arch sandbox_os.subhost = os.subhost +sandbox_os.subarch = os.subarch sandbox_os.syserror = os.syserror sandbox_os.strerror = os.strerror sandbox_os.exit = os.exit |
