mirror of
https://github.com/CompeyDev/lune-packaging.git
synced 2025-01-09 12:19:09 +00:00
hack: overwrite appimagetool command
This commit is contained in:
parent
86cc8ba630
commit
16e6a60b06
1 changed files with 6 additions and 0 deletions
6
.github/workflows/appimage.yaml
vendored
6
.github/workflows/appimage.yaml
vendored
|
@ -34,10 +34,16 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
export LUNE_VERSION=0.7.5
|
export LUNE_VERSION=0.7.5
|
||||||
export SYSTEM_ARCH=${{ matrix.arch }}
|
export SYSTEM_ARCH=${{ matrix.arch }}
|
||||||
|
|
||||||
|
|
||||||
apt update
|
apt update
|
||||||
apt install imagemagick file desktop-file-utils curl wget dpkg-dev unzip fuse libfuse2 -y
|
apt install imagemagick file desktop-file-utils curl wget dpkg-dev unzip fuse libfuse2 -y
|
||||||
wget https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-$SYSTEM_ARCH.AppImage -O /usr/bin/appimagetool
|
wget https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-$SYSTEM_ARCH.AppImage -O /usr/bin/appimagetool
|
||||||
|
|
||||||
|
appimagetool()
|
||||||
|
/usr/bin/appimagetool "$@"
|
||||||
|
|
||||||
|
export -f /usr/bin/appimagetool
|
||||||
|
|
||||||
cd /build
|
cd /build
|
||||||
./pkg2appimage/pkg2appimage lune.yml
|
./pkg2appimage/pkg2appimage lune.yml
|
||||||
|
|
Loading…
Reference in a new issue