4b6a35c277854e2f3705a7e6bb5c1fb851fbd0eb
[webi-installers/.git] / macos / macos.bash
1 # title: macOS
2 # homepage: https://bootableinstaller.com/macos/
3 # tagline: Bootable macOS Installer
4 # description: |
5 #   Downloads the official OS X / macOS dmg from Apple to create bootable installers - works from macOS, Linux, or even Windows (through VirtualBox).
6 # examples: |
7 #
8 #   Use with Balena Etcher to burn ISO to USB, or boot with VirtualBox.
9 #
10 #   ```txt
11 #   el-capitan.iso
12 #   ```
13
14 set -e
15 set -u
16
17 if [ -z "${WEBI_PKG_URL:-}" ]; then
18   # dmg
19   release_tab="${WEBI_HOST}/api/releases/macos@${WEBI_VERSION:-}.csv?os=$(uname -s)&arch=$(uname -m)&limit=1"
20   echo $release_tab
21   WEBI_CSV=$(curl -fsSL "$release_tab" -H "User-Agent: $(uname -a)")
22   echo $WEBI_CSV
23   WEBI_CHANNEL=$(echo $WEBI_CSV | cut -d ',' -f 3)
24   echo $WEBI_CHANNEL
25   if [ "error" == "$WEBI_CHANNEL" ]; then
26      echo "could not find release for macOS v${WEBI_VERSION}"
27      exit 1
28   fi
29   WEBI_VERSION=$(echo $WEBI_CSV | cut -d ',' -f 1)
30   WEBI_PKG_URL=$(echo $WEBI_CSV | cut -d ',' -f 9)
31 fi
32
33 mkdir -p ~/Downloads
34 pushd ~/Downloads 2>&1 >/dev/null
35
36 wget -c "$WEBI_PKG_URL"
37
38 if [ "Darwin" == "$(uname -s)" ]; then
39   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
40   bash create-bootable-installer-for-os-x-el-capitan.sh
41 else
42   curl -fsSL 'https://gist.githubusercontent.com/solderjs/9834a45a6c21a41e8882698a00b55787/raw/c43061cd0c53ec675996f5cb66c7077e666aabd4/install-mac-tools.sh' -o install-mac-tools.sh
43   bash install-mac-tools.sh
44
45   curl -fsSL 'https://gist.github.com/solderjs/04fd06560a8465a695337eb502f5b0e9/raw/0a06fb4dce91399d374d9a12958dabb48a9bd42a/empty.7400m.img.bz2' -o empty.7400m.img.bz2
46
47   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
48   bash linux-create-bootable-macos-recovery-image.sh
49 fi
50
51 popd 2>&1 >/dev/null