]> gitweb.fluxo.info Git - trashman.git/commitdiff
Fix: hoarder: tor-browser: bashisms
authorSilvio Rhatto <rhatto@riseup.net>
Mon, 27 Nov 2023 21:34:46 +0000 (18:34 -0300)
committerSilvio Rhatto <rhatto@riseup.net>
Mon, 27 Nov 2023 21:34:46 +0000 (18:34 -0300)
share/hoarder/tor-browser/unix/linux/install

index 2503eebe2118a84a42439ea3511f3fcf258a83d7..a4bd7dcb7e3778585cd9b5f9aea167c88d313618 100755 (executable)
@@ -61,7 +61,7 @@ tar xvf $WORK/$FILE -C $WORK || exit 1
 mkdir -p $HOME/.local/share || exit 1
 
 # Install
-if [ "$APP" == "tor-browser" ]; then
+if [ "$APP" = "tor-browser" ]; then
   # Always use the "latest" folder. Tor Browser has a self-update mechanism that
   # will ensure that this installation is always the latest.
   mkdir -p $HOME/.local/share            || exit 1
@@ -70,7 +70,7 @@ if [ "$APP" == "tor-browser" ]; then
   mkdir -p $APP/$ARCH                    || exit 1
   mv $WORK/tor-browser $APP/$ARCH/latest || exit 1
   rm -rf $WORK                           || exit 1
-elif [ "$APP" == "tor-browser-alpha" ]; then
+elif [ "$APP" = "tor-browser-alpha" ]; then
   # Since this is an alpha version, use per-version folders
   cd $HOME/.local/share                    || exit 1
   rm -rf $APP/$ARCH/$VERSION               || exit 1
@@ -87,7 +87,7 @@ cd $HOME/.local/bin
 ln -sf $HOME/.local/share/$APP/$ARCH/latest/Browser/start-tor-browser $APP-${ARCH} || exit 1
 
 # Additional symlink for the alpha version
-if [ "$APP" == "tor-browser-alpha" ]; then
+if [ "$APP" = "tor-browser-alpha" ]; then
   ln -sf $HOME/.local/share/$APP/$ARCH/$VERSION/Browser/start-tor-browser $APP-${ARCH}-${VERSION} || exit 1
 fi