mirror of
https://github.com/foxlet/macOS-Simple-KVM.git
synced 2024-11-06 03:09:46 +01:00
9 lines
241 B
Bash
Executable file
9 lines
241 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# jumpstart.sh: Fetches BaseSystem and converts it to a viable format.
|
|
# by Foxlet <foxlet@furcode.co>
|
|
|
|
TOOLS=$PWD/tools
|
|
|
|
$TOOLS/FetchMacOS/fetch.sh
|
|
$TOOLS/dmg2img $TOOLS/FetchMacOS/BaseSystem/BaseSystem.dmg $PWD/BaseSystem.img
|