aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorsickcodes <[email protected]>2021-02-26 05:30:09 +0000
committersickcodes <[email protected]>2021-02-26 05:30:09 +0000
commit84326051cae737c7897823b2aabf5dc2c711cfa9 (patch)
tree2286f20247234460fd3962df71654f3adf5e5731 /Dockerfile
parentFixed subshell logic in startup scripts. (diff)
downloaddocker-osx-84326051cae737c7897823b2aabf5dc2c711cfa9.tar.xz
docker-osx-84326051cae737c7897823b2aabf5dc2c711cfa9.zip
source "${ENV:=/env}" logic
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 3625431..e2701f5 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -279,10 +279,9 @@ CMD sudo chown "$(id -u)":"$(id -g)" "${IMAGE_PATH}" "${BOOTDISK}" 2>/dev/null |
--bootdisks \
--output-bootdisk "${BOOTDISK:-/home/arch/OSX-KVM/OpenCore-Catalina/OpenCore.qcow2}" \
--output-env "${ENV:=/env}" \
- && source "${ENV}" \
; } \
; [[ "${GENERATE_SPECIFIC}" == true ]] && { \
- source /env \
+ source "${ENV:=/env}" \
|| ./Docker-OSX/custom/generate-specific-bootdisk.sh \
--model "${DEVICE_MODEL}" \
--serial "${SERIAL}" \