Skip to content

Commit 301152a

Browse files
committed
(build_appimage.sh) don't use sudo for this u don't need it
1 parent 5e94573 commit 301152a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build_appimage.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ 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+
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

0 commit comments

Comments
 (0)