summaryrefslogtreecommitdiff
path: root/xmake/core/sandbox/modules/utils.lua
diff options
context:
space:
mode:
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