diff options
| author | sickcodes <[email protected]> | 2021-02-26 05:30:09 +0000 |
|---|---|---|
| committer | sickcodes <[email protected]> | 2021-02-26 05:30:09 +0000 |
| commit | 84326051cae737c7897823b2aabf5dc2c711cfa9 (patch) | |
| tree | 2286f20247234460fd3962df71654f3adf5e5731 /Dockerfile | |
| parent | Fixed subshell logic in startup scripts. (diff) | |
| download | docker-osx-84326051cae737c7897823b2aabf5dc2c711cfa9.tar.xz docker-osx-84326051cae737c7897823b2aabf5dc2c711cfa9.zip | |
source "${ENV:=/env}" logic
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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}" \ |