diff options
| author | ruki <[email protected]> | 2026-03-29 20:16:55 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-03-29 20:16:55 +0800 |
| commit | 21760e232a003e32f6ac10099a603a6366eb6aca (patch) | |
| tree | e9ae8b65668d816d81731a96342160cb4b512d6f /xmake/plugins | |
| parent | 59fe6e5ed992bd406a357c8f8a7b06b7b853d269 (diff) | |
| parent | cac33792c8ef559680bf260c7d36e86a51fb42f5 (diff) | |
Merge pull request #7433 from Shiffted/fix_appimage
fix name of xpack appimage package
Diffstat (limited to 'xmake/plugins')
| -rw-r--r-- | xmake/plugins/pack/appimage/main.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/plugins/pack/appimage/main.lua b/xmake/plugins/pack/appimage/main.lua index 3ae3e5c99..c27ef4d8e 100644 --- a/xmake/plugins/pack/appimage/main.lua +++ b/xmake/plugins/pack/appimage/main.lua @@ -89,13 +89,13 @@ end function _get_appimagetool() -- enter the environments of appimagetool - local oldenvs = packagenv.enter("appimagetool") + local oldenvs = packagenv.enter("appimage") -- find appimagetool local packages = {} local appimagetool = find_tool("appimagetool") if not appimagetool then - table.join2(packages, install_packages("appimagetool")) + table.join2(packages, install_packages("appimage")) end -- enter the environments of installed packages |
