[QOL] Fix auto image building wget log overload

pull/140/head
sickcodes 4 years ago
parent 9fead74c71
commit bffd8f3990

@ -95,8 +95,9 @@ ARG IMAGE_URL='https://images2.sick.codes/mac_hdd_ng_auto.img'
# use the COMPLETE arg, for a complete image, ready to boot. # use the COMPLETE arg, for a complete image, ready to boot.
# otherwise use your own image: -v "$PWD/disk.img":/image # otherwise use your own image: -v "$PWD/disk.img":/image
RUN if [[ "${COMPLETE}" ]]; then \ RUN if [[ "${COMPLETE}" ]]; then \
echo "Downloading 20GB+ image... Press Ctrl+C to abort." \ echo "Downloading 20GB+ image... This step might take a while... Press Ctrl+C if you want to abort." \
; wget --no-dns-cache \ ; wget --no-verbose \
--no-dns-cache \
--no-check-certificate \ --no-check-certificate \
--output-document=/home/arch/OSX-KVM/mac_hdd_ng.img \ --output-document=/home/arch/OSX-KVM/mac_hdd_ng.img \
"${IMAGE_URL}" \ "${IMAGE_URL}" \

Loading…
Cancel
Save