summaryrefslogtreecommitdiff
path: root/xmake/plugins/lua/xmake.lua
diff options
context:
space:
mode:
authorSaikari <[email protected]>2026-01-31 16:57:13 +0300
committerSaikari <[email protected]>2026-01-31 16:57:13 +0300
commit4aee85b4d3f6537ad1d64472bced22525db6d98f (patch)
tree9cc9a2593ecd7a4982b68d5b6aaa7f3032c35088 /xmake/plugins/lua/xmake.lua
parent5e59fa1d59486438337290e3d528561791843f7c (diff)
refactor: update stdin command usage example for consistency
Diffstat (limited to 'xmake/plugins/lua/xmake.lua')
-rw-r--r--xmake/plugins/lua/xmake.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/plugins/lua/xmake.lua b/xmake/plugins/lua/xmake.lua
index 527ecb19e..467cde3f1 100644
--- a/xmake/plugins/lua/xmake.lua
+++ b/xmake/plugins/lua/xmake.lua
@@ -48,7 +48,7 @@ task("lua")
, {nil, "from-stdin" , "k" , nil , "Run script from stdin",
"e.g.",
" - CMD",
- " - Single: echo print('hello') | xmake lua --from-stdin",
+ " - Single: echo print(\"hello\") | xmake lua --from-stdin",
" - Multiline: (echo print('1') && echo print('2')) | xmake lua --from-stdin",
" - File: type script.lua | xmake lua --from-stdin",
" - PWSH",