aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2024-03-04 12:16:02 -0300
committerHisham Muhammad <hisham@gobolinux.org>2024-03-05 15:58:45 +0000
commit5a0b769b9c02c2bada169c3699e499cf64f569f3 (patch)
tree62c484b872e572a7487c2a00461fdeb0010874eb /src
parent1f3e8794254d32d44c510e3868378b2f969b0ba6 (diff)
downloadluarocks-5a0b769b9c02c2bada169c3699e499cf64f569f3.tar.gz
luarocks-5a0b769b9c02c2bada169c3699e499cf64f569f3.tar.bz2
luarocks-5a0b769b9c02c2bada169c3699e499cf64f569f3.zip
fix(path): break Windows cmd to avoid argparse word wrap
Diffstat (limited to 'src')
-rw-r--r--src/luarocks/cmd/path.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/luarocks/cmd/path.lua b/src/luarocks/cmd/path.lua
index ac78724d..ba346550 100644
--- a/src/luarocks/cmd/path.lua
+++ b/src/luarocks/cmd/path.lua
@@ -15,7 +15,8 @@ of LuaRocks, formatted as shell commands to update LUA_PATH and LUA_CPATH.
15On Unix systems, you may run: 15On Unix systems, you may run:
16 eval `luarocks path` 16 eval `luarocks path`
17And on Windows: 17And on Windows:
18 luarocks path > "%temp%\_lrp.bat" && call "%temp%\_lrp.bat" && del "%temp%\_lrp.bat"]], 18 luarocks path > "%temp%\_lrp.bat"
19 call "%temp%\_lrp.bat" && del "%temp%\_lrp.bat"]],
19 util.see_also()) 20 util.see_also())
20 :summary("Return the currently configured package path.") 21 :summary("Return the currently configured package path.")
21 22