Skip to content

Commit b6b0242

Browse files
authored
Update htop-appimage.sh
1 parent b55fd16 commit b6b0242

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

htop-appimage.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ mkdir -p ./"$APP/$APPDIR" && cd ./"$APP/$APPDIR" || exit 1
1111
# DOWNLOAD AND BUILD HTOP
1212
CURRENTDIR="$(readlink -f "$(dirname "$0")")" # DO NOT MOVE THIS
1313
version=$(wget -q https://api.github.com/repos/$SITE/releases -O - | sed 's/[()",{}]/ /g; s/ /\n/g' | grep -o 'https.*releases.*htop.*tar.xz' | head -1)
14-
wget "$version" && tar fx ./*tar* && cd ./htop* && ./autogen.sh && ./configure --prefix="$CURRENTDIR" --enable-static --enable-sensors && make && make install && cd .. || exit 1
14+
wget "$version" && tar fx ./*tar* && cd ./htop* && ./autogen.sh && ./configure --prefix="$CURRENTDIR" --enable-static && make && make install && cd .. || exit 1
1515
find ./bin/* -type f -executable -exec sed -i -e "s|/usr|././|g" {} \; && echo "binary patched" && rm -rf ./htop* ./*tar* || exit 1
1616

1717
# PREPARE APPIMAGE

0 commit comments

Comments
 (0)