Explorar o código

Use the same shell as invoked with for installation. (#1403)

Fixes #1402
Matt Godbolt %!s(int64=3) %!d(string=hai) anos
pai
achega
dab4f56e4e
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      installers/local/install.sh

+ 2 - 2
installers/local/install.sh

@@ -60,9 +60,9 @@ done
 
 if [[ -O "${ACCESS_PATH}" ]]; then
   echo "Installing files..."
-  echo "${SCRIPT}" | /usr/bin/bash -eux -
+  echo "${SCRIPT}" | /bin/bash -eux -
 else
   echo "Installing files using sudo..."
-  echo "${SCRIPT}" | sudo -- /usr/bin/bash -eux -
+  echo "${SCRIPT}" | sudo -- /bin/bash -eux -
 fi
 echo "All done."