13 lines
260 B
Bash
Executable File
13 lines
260 B
Bash
Executable File
#!/usr/bin/env zsh
|
|
|
|
function main() {
|
|
local tmddir="`mktemp -d -t 'macos-system'`"
|
|
trap 'rm -fr -- "${tmpdir}"' EXIT
|
|
pushd -q "${tmddir}"
|
|
git clone -q --recurse-submodules https://github.com/astzweig/macos-system.git .
|
|
./install.sh
|
|
popd -q
|
|
}
|
|
|
|
main
|