fix: fixes to pipeline, script, and .gitignorey

This commit is contained in:
DecDuck
2025-08-03 13:20:26 +10:00
parent c78079e4be
commit d19c5b8e97
5 changed files with 13 additions and 8 deletions

View File

@ -1,4 +1,5 @@
#!/bin/sh
set -e
# run this from the root of the git repo to make this work
@ -21,14 +22,14 @@ build() {
rm -f $appdir/usr/bin/* $appdir/usr/lib/*
if [[ ! "$1" == "--nobuild" ]]; then
build
build
fi
# install binaries in the appdir, then the libraries
cp $target_dir/release/drop-app $appdir/usr/bin
for i in $(readelf -d "$target_dir/release/drop-app" |grep NEEDED |cut -d'[' -f2 |tr -d ]);
for i in $(readelf -d "$target_dir/release/drop-app" | grep NEEDED |cut -d'[' -f2 |tr -d ]);
do
install -g 1000 -o 1000 -Dm755 "$(ls -L1 /usR/LIB/$i)" $appdir/usr/lib
install -g 1000 -o 1000 -Dm755 "$(ls -L1 /usr/lib/$i)" $appdir/usr/lib
done
wget -O $appimage_dir/appimagetool https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-$arch.AppImage