mirror of
https://github.com/webinstall/webi-installers.git
synced 2026-02-14 17:49:53 +00:00
52 lines
2.0 KiB
Bash
52 lines
2.0 KiB
Bash
# title: macOS
|
|
# homepage: https://bootableinstaller.com/macos/
|
|
# tagline: Bootable macOS Installer
|
|
# description: |
|
|
# Downloads the official OS X / macOS dmg from Apple to create bootable installers - works from macOS, Linux, or even Windows (through VirtualBox).
|
|
# examples: |
|
|
#
|
|
# Use with Balena Etcher to burn ISO to USB, or boot with VirtualBox.
|
|
#
|
|
# ```txt
|
|
# el-capitan.iso
|
|
# ```
|
|
|
|
set -e
|
|
set -u
|
|
|
|
if [ -z "${WEBI_PKG_URL:-}" ]; then
|
|
# dmg
|
|
release_tab="${WEBI_HOST}/api/releases/macos@${WEBI_VERSION:-}.csv?os=$(uname -s)&arch=$(uname -m)&limit=1"
|
|
echo $release_tab
|
|
WEBI_CSV=$(curl -fsSL "$release_tab" -H "User-Agent: $(uname -a)")
|
|
echo $WEBI_CSV
|
|
WEBI_CHANNEL=$(echo $WEBI_CSV | cut -d ',' -f 3)
|
|
echo $WEBI_CHANNEL
|
|
if [ "error" == "$WEBI_CHANNEL" ]; then
|
|
echo "could not find release for macOS v${WEBI_VERSION}"
|
|
exit 1
|
|
fi
|
|
WEBI_VERSION=$(echo $WEBI_CSV | cut -d ',' -f 1)
|
|
WEBI_PKG_URL=$(echo $WEBI_CSV | cut -d ',' -f 9)
|
|
fi
|
|
|
|
mkdir -p ~/Downloads
|
|
pushd ~/Downloads 2>&1 >/dev/null
|
|
|
|
wget -c "$WEBI_PKG_URL"
|
|
|
|
if [ "Darwin" == "$(uname -s)" ]; then
|
|
curl -fsSL 'https://gist.githubusercontent.com/solderjs/8c36d132250163011c83bad8284975ee/raw/5a291955813743c20c12ca2d35c7b1bb34f8aecc/create-bootable-installer-for-os-x-el-capitan.sh' -o create-bootable-installer-for-os-x-el-capitan.sh
|
|
bash create-bootable-installer-for-os-x-el-capitan.sh
|
|
else
|
|
curl -fsSL 'https://gist.githubusercontent.com/solderjs/9834a45a6c21a41e8882698a00b55787/raw/c43061cd0c53ec675996f5cb66c7077e666aabd4/install-mac-tools.sh' -o install-mac-tools.sh
|
|
bash install-mac-tools.sh
|
|
|
|
curl -fsSL 'https://gist.github.com/solderjs/04fd06560a8465a695337eb502f5b0e9/raw/0a06fb4dce91399d374d9a12958dabb48a9bd42a/empty.7400m.img.bz2' -o empty.7400m.img.bz2
|
|
|
|
curl -fsSL 'https://gist.githubusercontent.com/solderjs/9834a45a6c21a41e8882698a00b55787/raw/c43061cd0c53ec675996f5cb66c7077e666aabd4/linux-create-bootable-macos-recovery-image.sh' -o linux-create-bootable-macos-recovery-image.sh
|
|
bash linux-create-bootable-macos-recovery-image.sh
|
|
fi
|
|
|
|
popd 2>&1 >/dev/null
|