diff options
| author | ruki <[email protected]> | 2016-05-05 16:08:19 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2016-05-05 16:08:19 +0800 |
| commit | 64cf81d6ddf726e3230b4fab852e4eb0b75c378d (patch) | |
| tree | 341fa416034a0aa5c23aa17c513a7dcf85cb12b2 /xmake/core/sandbox/modules/utils.lua | |
| parent | f68de1b816bd631634a82d6cd8c8ea4636961a54 (diff) | |
reimpl build objects
Diffstat (limited to 'xmake/core/sandbox/modules/utils.lua')
| -rw-r--r-- | xmake/core/sandbox/modules/utils.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/core/sandbox/modules/utils.lua b/xmake/core/sandbox/modules/utils.lua index d419c257e..877234602 100644 --- a/xmake/core/sandbox/modules/utils.lua +++ b/xmake/core/sandbox/modules/utils.lua @@ -45,14 +45,14 @@ function sandbox_utils.print(format, ...) end -- done - return io.write(vformat(format, ...) .. "\n") + io.write(vformat(format, ...) .. "\n") end -- printf with the builtin variables function sandbox_utils.printf(format, ...) -- done - return io.write(vformat(format, ...)) + io.write(vformat(format, ...)) end -- assert |
