mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 02:58:09 +01:00
7 lines
213 B
Bash
7 lines
213 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
echo "Downloading firefox..."
|
||
|
wget https://ftp.mozilla.org/pub/firefox/releases/58.0/linux-x86_64/en-US/firefox-58.0.tar.bz2 \
|
||
|
&& tar xjf firefox-58.0.tar.bz2
|
||
|
echo "firefox download complete"
|