diff options
Diffstat (limited to 'tor-browser-dl')
-rwxr-xr-x | tor-browser-dl | 18 |
1 files changed, 2 insertions, 16 deletions
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 |