aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsickcodes <[email protected]>2021-10-30 20:36:54 +0000
committersickcodes <[email protected]>2021-10-30 20:36:54 +0000
commit50c87a4bac573e3d2516b857f2fd72aa496c5356 (patch)
treeaa5176f46b69ca222fb074b3bc93e9646025fa6c
parentMerge pull request #366 from eggplants/master (diff)
downloaddocker-osx-50c87a4bac573e3d2516b857f2fd72aa496c5356.tar.xz
docker-osx-50c87a4bac573e3d2516b857f2fd72aa496c5356.zip
Hard fail, of course, on libguestfs build errors
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 6225fd8..64c89d1 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -267,7 +267,7 @@ RUN ./Docker-OSX/osx-serial-generator/generate-specific-bootdisk.sh \
--mac-address "${STOCK_MAC_ADDRESS}" \
--width "${STOCK_WIDTH}" \
--height "${STOCK_HEIGHT}" \
- --output-bootdisk "${STOCK_BOOTDISK}"
+ --output-bootdisk "${STOCK_BOOTDISK}" || exit 1
RUN ./Docker-OSX/osx-serial-generator/generate-specific-bootdisk.sh \
--master-plist-url="${STOCK_MASTER_PLIST_URL_NOPICKER}" \
@@ -278,7 +278,7 @@ RUN ./Docker-OSX/osx-serial-generator/generate-specific-bootdisk.sh \
--mac-address "${STOCK_MAC_ADDRESS}" \
--width "${STOCK_WIDTH}" \
--height "${STOCK_HEIGHT}" \
- --output-bootdisk "${STOCK_BOOTDISK_NOPICKER}"
+ --output-bootdisk "${STOCK_BOOTDISK_NOPICKER}" || exit 1
### symlink the old directory as upstream has renamed a directory. Symlinking purely for backwards compatability!
RUN ln -s /home/arch/OSX-KVM/Opencore /home/arch/OSX-KVM/Opencore-Catalina || true