mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
14 lines
446 B
Bash
Executable File
14 lines
446 B
Bash
Executable File
#!/usr/bin/env bash
|
|
echo "Checking if firefox was already downloaded"
|
|
if [ -d "firefox" ]
|
|
then
|
|
echo "Firefox found. No need to download"
|
|
else
|
|
FIREFOX_VERSION="61.0.1"
|
|
FIREFOX_BINARY="firefox-$FIREFOX_VERSION.tar.bz2"
|
|
echo "Downloading firefox..."
|
|
wget "https://ftp.mozilla.org/pub/firefox/releases/$FIREFOX_VERSION/linux-x86_64/en-US/$FIREFOX_BINARY" \
|
|
&& tar xjf "$FIREFOX_BINARY"
|
|
echo "firefox download complete"
|
|
fi
|