diff options
| author | sickcodes <[email protected]> | 2021-03-06 17:48:15 +0000 |
|---|---|---|
| committer | sickcodes <[email protected]> | 2021-03-06 17:48:15 +0000 |
| commit | 8935ce08abc371911f2d6e2e24aff6b9bc64827a (patch) | |
| tree | 5c4ec022aa1ea02ef0400ec7b34aea1d9640ead0 /Dockerfile | |
| parent | Fix help. Change envs to --envs. Auto turn on envs, plists, bootdisks if sett... (diff) | |
| download | docker-osx-8935ce08abc371911f2d6e2e24aff6b9bc64827a.tar.xz docker-osx-8935ce08abc371911f2d6e2e24aff6b9bc64827a.zip | |
Fix bootdisk not getting written to persistent file when using NOPICKER=true. NOPICKER=true is overridden by a custom plist now anyway.
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -306,7 +306,7 @@ CMD sudo chown -R $(id -u):$(id -g) /dev/kvm /dev/snd "${IMAGE_PATH}" "${BOOTDIS esac \ ; [[ "${NOPICKER}" == true ]] && { \ sed -i '/^.*InstallMedia.*/d' Launch.sh \ - && export BOOTDISK=/home/arch/OSX-KVM/OpenCore-Catalina/OpenCore-nopicker.qcow2 \ + && export BOOTDISK="${BOOTDISK:-/home/arch/OSX-KVM/OpenCore-Catalina/OpenCore-nopicker.qcow2}" \ ; } \ ; [[ "${GENERATE_UNIQUE}" == true ]] && { \ ./Docker-OSX/custom/generate-unique-machine-values.sh \ |