mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
7 lines
213 B
Bash
Executable File
7 lines
213 B
Bash
Executable File
#!/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"
|