summaryrefslogtreecommitdiff
path: root/xmake/scripts/tools/echo.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2015-06-05 13:38:12 +0800
committerruki <[email protected]>2015-06-05 13:38:12 +0800
commitce6af9d93717a57792fc7d371f0fea9c40878c2f (patch)
treead68f1ea18284b12fdc3a364f88350b0ffed7c58 /xmake/scripts/tools/echo.lua
parent9c4c565ef5cba3c668b338ed0066cff0d58e8caa (diff)
fix verbose for makefile
Diffstat (limited to 'xmake/scripts/tools/echo.lua')
-rw-r--r--xmake/scripts/tools/echo.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/scripts/tools/echo.lua b/xmake/scripts/tools/echo.lua
index 197cebedc..d9ee8f872 100644
--- a/xmake/scripts/tools/echo.lua
+++ b/xmake/scripts/tools/echo.lua
@@ -32,7 +32,7 @@ function echo.main(...)
-- echo all
for _, v in ipairs(...) do
- io.write(string.format("%s ", v:gsub("%%20", " ")))
+ io.write(string.format("%s ", v:gsub("%%20", " "):gsub("%%3d", "="):gsub("%%22", "\"")))
end
io.write("\n")