diff options
| author | ruki <[email protected]> | 2025-04-24 22:38:29 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2025-04-24 10:24:45 +0800 |
| commit | 9a69d05a1087691899587da2aeb1c37cea54c354 (patch) | |
| tree | ec5394b2cbfa368d994c5b180dc6a9f87cde6640 /xmake/plugins/pack/xpack.lua | |
| parent | f1a41602879db55520c92458d1d52b494df66976 (diff) | |
rename config.buildir
Diffstat (limited to 'xmake/plugins/pack/xpack.lua')
| -rw-r--r-- | xmake/plugins/pack/xpack.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/plugins/pack/xpack.lua b/xmake/plugins/pack/xpack.lua index 5cd3431a5..c166c78d8 100644 --- a/xmake/plugins/pack/xpack.lua +++ b/xmake/plugins/pack/xpack.lua @@ -257,14 +257,14 @@ end -- get the build directory function xpack:buildir() - return path.join(config.buildir(), ".xpack", self:name()) + return path.join(config.builddir(), ".xpack", self:name()) end -- get the output directory function xpack:outputdir() local outputdir = option.get("outputdir") if outputdir == nil then - outputdir = path.join(config.buildir(), "xpack", self:name()) + outputdir = path.join(config.builddir(), "xpack", self:name()) end return outputdir end |
