Let the journey begin

This commit is contained in:
Rezart Qelibari
2022-01-23 00:04:10 +01:00
commit 74494ab45d
5 changed files with 333 additions and 0 deletions

12
bootstrap.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/env zsh
function main() {
local tmddir="`mktemp -d -t 'macos-system'`"
trap 'rm -fr -- "${tmpdir}"' EXIT
pushd -q "${tmddir}"
git clone --recurse-submodules https://github.com/astzweig/macos-system.git .
./install.sh
popd -q
}
main