diff options
-rwxr-xr-x | .circleci/scripts/firefox-download.sh | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/.circleci/scripts/firefox-download.sh b/.circleci/scripts/firefox-download.sh index 4b828a6ff..1cb9ba5ac 100755 --- a/.circleci/scripts/firefox-download.sh +++ b/.circleci/scripts/firefox-download.sh @@ -1,13 +1,12 @@ #!/usr/bin/env bash -FIREFOX_BINARY="firefox-58.0.tar.bz2" echo "Checking if firefox was already downloaded" -if [ -e $FIREFOX_BINARY ] +if [ -d "firefox" ] then - echo "$FIREFOX_BINARY found. No need to download" + echo "Firefox found. No need to download" else + FIREFOX_BINARY="firefox-61.0.1.tar.bz2" echo "Downloading firefox..." wget "https://ftp.mozilla.org/pub/firefox/releases/58.0/linux-x86_64/en-US/$FIREFOX_BINARY" \ && tar xjf "$FIREFOX_BINARY" echo "firefox download complete" fi - |