summaryrefslogtreecommitdiff
path: root/xmake/plugins
diff options
context:
space:
mode:
authorruki <[email protected]>2022-04-08 00:54:39 +0800
committerruki <[email protected]>2022-04-08 00:54:39 +0800
commit26e6cc713cc42bf4d47c47d178b26f5f6234f91f (patch)
treeef8e20ca75884eefb3e47981f2725f3388835d65 /xmake/plugins
parent8ae404d76bd0267bb46ac28dae0ba86583de7aa0 (diff)
fix envs
Diffstat (limited to 'xmake/plugins')
-rw-r--r--xmake/plugins/show/lists/envs.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/plugins/show/lists/envs.lua b/xmake/plugins/show/lists/envs.lua
index 8e66db1e8..753efd997 100644
--- a/xmake/plugins/show/lists/envs.lua
+++ b/xmake/plugins/show/lists/envs.lua
@@ -38,7 +38,7 @@ function main()
XMAKE_TMPDIR = {"Set the temporary directory.", os.tmpdir()},
XMAKE_PROFILE = {"Start profiler, e.g. perf, trace, stuck.", os.getenv("XMAKE_PROFILE")},
XMAKE_PKG_CACHEDIR = {"Set the cache directory of packages.", os.getenv("XMAKE_PKG_CACHEDIR")},
- XMAKE_PKG_INSTALLDIR = {"Set the install directory of packages.", os.getenv("XMAKE_PACKAGEDIR")}}
+ XMAKE_PKG_INSTALLDIR = {"Set the install directory of packages.", os.getenv("XMAKE_PKG_INSTALLDIR")}}
local width = 24
for name, env in pairs(envs) do
cprint("${color.dump.string}%s${clear}%s%s", name, (" "):rep(width - #name), env[1])