From 26b9983f62a021ae862a7edb861b981af2a2a73d Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Mon, 27 Nov 2023 15:00:29 -0300 Subject: Fix: tor-browser-dl: update file name scheme --- tor-browser-dl | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) (limited to 'tor-browser-dl') diff --git a/tor-browser-dl b/tor-browser-dl index ee70585..7aaaa60 100755 --- a/tor-browser-dl +++ b/tor-browser-dl @@ -28,25 +28,11 @@ if [ -z "$VERSION" ]; then exit 1 fi -# Determine architecture and file suffix +# Determine the application name if echo $VERSION | grep -q 'a'; then APP="tor-browser-alpha" else APP="tor-browser" - FILE_SUFFIX="_ALL" -fi - -# Determine architecture -if [ "$ARCH" = "i386" ]; then - ARCH="linux32" -elif [ "$ARCH" = "i686" ]; then - ARCH="linux32" -elif [ -z "$ARCH" ] || [ "$ARCH" = "x86_64" ]; then - if [ "$APP" = "tor-browser" ]; then - ARCH="linux64" - else - ARCH="linux-x86_64" - fi fi # Set lang @@ -56,7 +42,7 @@ fi # Set file names #FILE="tor-browser-$ARCH-$VERSION"_"$LANG.tar.xz" -FILE="tor-browser-${ARCH}-${VERSION}${FILE_SUFFIX}.tar.xz" +FILE="tor-browser-linux-${ARCH}-${VERSION}.tar.xz" SIGN="$FILE.asc" # Check existing installation -- cgit v1.2.3