summaryrefslogtreecommitdiff
path: root/xmake/core/sandbox/modules/utils.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2017-08-16 15:35:31 +0800
committerruki <[email protected]>2017-08-16 15:35:31 +0800
commit19a8933bcbbd3513916ad3d0ec67ebf1bb8b88ec (patch)
tree91ca398588dc6d70efaba0ee33f2dc37c9dc3ac6 /xmake/core/sandbox/modules/utils.lua
parent1801533d6ec2b2f981c58bf1a5a5e4aea56d633a (diff)
fix require print info
Diffstat (limited to 'xmake/core/sandbox/modules/utils.lua')
-rw-r--r--xmake/core/sandbox/modules/utils.lua6
1 files changed, 0 insertions, 6 deletions
diff --git a/xmake/core/sandbox/modules/utils.lua b/xmake/core/sandbox/modules/utils.lua
index e282ef80e..4e3c8858f 100644
--- a/xmake/core/sandbox/modules/utils.lua
+++ b/xmake/core/sandbox/modules/utils.lua
@@ -92,22 +92,16 @@ end
-- print format string and the builtin variables without newline
function sandbox_utils.printf(format, ...)
-
- -- done
utils._iowrite(vformat(format, ...))
end
-- print format string, the builtin variables and colors with newline
function sandbox_utils.cprint(format, ...)
-
- -- done
utils._print(colors(vformat(format, ...)))
end
-- print format string, the builtin variables and colors without newline
function sandbox_utils.cprintf(format, ...)
-
- -- done
utils._iowrite(colors(vformat(format, ...)))
end