diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2023-08-30 14:18:58 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2023-08-30 14:18:58 -0300 |
commit | ce427277dd973741135c7ea74040655902973f68 (patch) | |
tree | 0d324f9e2385953cb5441bc1ccf02bd5834aab25 | |
parent | bb2d0862341f9a57cd40346ba824398a0530e8f4 (diff) | |
download | trashman-ce427277dd973741135c7ea74040655902973f68.tar.gz trashman-ce427277dd973741135c7ea74040655902973f68.tar.bz2 |
Fix: tor-browser: file arch (2)
-rwxr-xr-x | share/hoarder/tor-browser/unix/linux/install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/hoarder/tor-browser/unix/linux/install b/share/hoarder/tor-browser/unix/linux/install index f54c12b..0d3cc6d 100755 --- a/share/hoarder/tor-browser/unix/linux/install +++ b/share/hoarder/tor-browser/unix/linux/install @@ -27,7 +27,7 @@ if [ "$ARCH" = "i386" ]; then elif [ "$ARCH" = "i686" ]; then ARCH="linux32" elif [ "$ARCH" = "x86_64" ]; then - if [ "$APP" == "tor-browser" ]; then + if [ "$APP" = "tor-browser" ]; then ARCH="linux64" fi fi |