diff options
| author | Shiffted <[email protected]> | 2026-03-29 06:38:54 +0200 |
|---|---|---|
| committer | Shiffted <[email protected]> | 2026-03-29 06:38:54 +0200 |
| commit | cac33792c8ef559680bf260c7d36e86a51fb42f5 (patch) | |
| tree | 7a00bfd718e5b1ad2ca2a70835d911e6df0c96aa | |
| parent | 1df5ac2921a800c766fc64d4db6a85975c171e32 (diff) | |
fix xpack appimage package name
| -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 |
