38485886b99413f29c84e351b07ffa61d03eb95a
[webi-installers/.git] / macos / install.sh
1 #!/bin/bash
2
3 set -e
4 set -u
5
6 webi_download
7
8 pushd ~/Downloads 2>&1 >/dev/null
9
10 if [ "Darwin" == "$(uname -s)" ]; then
11   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
12   bash create-bootable-installer-for-os-x-el-capitan.sh
13 else
14   curl -fsSL 'https://gist.githubusercontent.com/solderjs/9834a45a6c21a41e8882698a00b55787/raw/c43061cd0c53ec675996f5cb66c7077e666aabd4/install-mac-tools.sh' -o install-mac-tools.sh
15   # TODO add xar to webinstall.dev
16   sudo apt install libz-dev # needed for xar
17   bash install-mac-tools.sh
18   echo "WARN: may need a restart for hfsplus to be recognized by the kernel"
19
20   curl -fsSL 'https://gist.github.com/solderjs/04fd06560a8465a695337eb502f5b0e9/raw/0a06fb4dce91399d374d9a12958dabb48a9bd42a/empty.7400m.img.bz2' -o empty.7400m.img.bz2
21
22   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
23   bash linux-create-bootable-macos-recovery-image.sh
24 fi
25
26 echo ""
27 echo "Created $HOME/Downloads/el-capitan.iso"
28 echo ""
29
30 popd 2>&1 >/dev/null