mirror of
https://github.com/foxlet/macOS-Simple-KVM.git
synced 2024-11-26 21:19:41 +01:00
9 lines
209 B
Bash
9 lines
209 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# jumpstart.sh: Fetches BaseSystem and converts it to a viable format.
|
||
|
|
||
|
TOOLS=$PWD/tools
|
||
|
|
||
|
$TOOLS/FetchMacOS/fetch.sh
|
||
|
$TOOLS/dmg2img $TOOLS/FetchMacOS/BaseSystem/BaseSystem.dmg $PWD/BaseSystem.img
|