diff options
| author | ruki <[email protected]> | 2020-02-21 22:53:05 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2020-02-21 11:18:31 +0800 |
| commit | 2ce8c14ab4cee3a5673aa24649196cb45dcc0426 (patch) | |
| tree | 295eaa446ccec43eab5e820c4193bfe1cc5d1ee7 /xmake | |
| parent | 868450acbb14b1bf5cd2da7b1b09a195e88a6bd5 (diff) | |
add os.syserror
Diffstat (limited to 'xmake')
| -rw-r--r-- | xmake/core/sandbox/modules/os.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/xmake/core/sandbox/modules/os.lua b/xmake/core/sandbox/modules/os.lua index c724e6f4e..5aa33d0b2 100644 --- a/xmake/core/sandbox/modules/os.lua +++ b/xmake/core/sandbox/modules/os.lua @@ -36,7 +36,9 @@ 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 sandbox_os.exit = os.exit sandbox_os.date = os.date sandbox_os.time = os.time |
