Minor fix

This commit is contained in:
Luis Guzmán 2020-04-11 11:27:40 -05:00
parent d911bcaad1
commit 98b4ec0578
1 changed files with 2 additions and 2 deletions

View File

@ -74,7 +74,7 @@ else
# Seems to be an issue with your audio driver,
# please review your hw setup.
#--------------------------------------------------"
read -p
read -n 1 -s -r -p "Press any key to continue"
fi
}
update_certbot() {
@ -216,7 +216,7 @@ if [ -f /usr/local/bin/chromedriver ]; then
echo "Chromedriver already installed."
else
echo "Installing Chromedriver"
wget https://chromedriver.storage.googleapis.com/$CHD_VER/chromedriver_linux64.zip -O /tmp/chromedriver_linux64.zip
wget -q https://chromedriver.storage.googleapis.com/$CHD_VER/chromedriver_linux64.zip -O /tmp/chromedriver_linux64.zip
unzip /tmp/chromedriver_linux64.zip -d /usr/local/bin/
chown root:root /usr/local/bin/chromedriver
chmod 0755 /usr/local/bin/chromedriver