These tools were originally necessary for some of the Homebrew applications to install successfully (especially Elasticsearch) but those requirements are no longer necessary. This also reduces the setup friction by requiring less manual work on behalf of the installer.
12 lines
325 B
Bash
12 lines
325 B
Bash
#! /usr/bin/env bash
|
|
|
|
set -o nounset
|
|
set -o errexit
|
|
set -o pipefail
|
|
IFS=$'\n\t'
|
|
|
|
export MAC_OS_BOOT_DISK_CREATOR="/Applications/Install macOS Mojave.app/Contents/Resources/createinstallmedia"
|
|
export MAC_OS_BOOT_DISK_PATH="/Volumes/Untitled"
|
|
export MAC_OS_WORK_PATH=/tmp/downloads
|
|
export MAC_OS_CONFIG_PATH="../mac_os-config"
|