mirror of
https://github.com/ViViDboarder/shoestrap.git
synced 2024-11-10 06:56:30 +00:00
8 lines
283 B
Plaintext
8 lines
283 B
Plaintext
|
#! /bin/bash
|
||
|
set -e
|
||
|
|
||
|
FILENAME=Firefox-Latest.dmg
|
||
|
curl --location -o "$TMP_DIR/$FILENAME" "https://download.mozilla.org/?product=firefox-latest-ssl&os=osx&lang=en-US"
|
||
|
hdiutil attach "$TMP_DIR/$FILENAME"
|
||
|
cp -r /Volumes/Firefox/Firefox.app /Applications/
|
||
|
hdiutil detach /Volumes/Firefox
|