Skip to content

Commit aa688db

Browse files
committed
(build_appimage.sh) wrong variable. whoops!
1 parent 2c6cdd2 commit aa688db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build_appimage.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ fi
2828
cp $target_dir/release/drop-app $appdir/usr/bin
2929
for i in $(readelf -d "$target_dir/release/drop-app" |grep NEEDED |cut -d'[' -f2 |tr -d ]);
3030
do
31-
sudo install -g 1000 -o 1000 -Dm755 "$(ls -L1 /usr/lib/$i)" $appdir/usr/lib
31+
sudo install -g 1000 -o 1000 -Dm755 "$(ls -L1 /usR/LIB/$i)" $appdir/usr/lib
3232
done
3333

3434
wget -O $appimage_dir/appimagetool https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-$arch.AppImage
3535

3636
cd $appimage_dir
3737
chmod u+x appimagetool
38-
appimagetool $APPDIR
38+
appimagetool $appdir

0 commit comments

Comments
 (0)