Suppress unzip logs in Ubuntu image generation (#3068)

This commit is contained in:
Aleksandr Chebotov
2021-03-31 16:07:25 +03:00
committed by GitHub
parent 1572c20af1
commit 05fc867e8a
5 changed files with 6 additions and 6 deletions

View File

@@ -30,7 +30,7 @@ CHROMEDRIVER_URL="https://chromedriver.storage.googleapis.com/$LATEST_CHROMEDRIV
download_with_retries $CHROMEDRIVER_URL "/tmp" "chromedriver_linux64.zip"
mkdir -p $CHROMEDRIVER_DIR
unzip /tmp/chromedriver_linux64.zip -d $CHROMEDRIVER_DIR
unzip -qq /tmp/chromedriver_linux64.zip -d $CHROMEDRIVER_DIR
chmod +x $CHROMEDRIVER_BIN
ln -s "$CHROMEDRIVER_BIN" /usr/bin/
echo "CHROMEWEBDRIVER=$CHROMEDRIVER_DIR" | tee -a /etc/environment