1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 11:22:43 +02:00

Update firefox-download.sh

This commit is contained in:
Bruno Barbieri 2018-07-06 16:16:18 -04:00 committed by GitHub
parent cdd556fb27
commit e0719a0358
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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