1
0
mirror of https://github.com/imgproxy/imgproxy.git synced 2024-11-24 08:12:38 +02:00

Another try to fix CI image build

This commit is contained in:
DarthSim 2023-11-21 19:16:22 +03:00
parent 23c4bdd484
commit e0091ad776

View File

@ -59,7 +59,7 @@ RUN \
--prefix=/root/vips/$VIPS_VERSION \
--libdir=lib \
-Dgtk_doc=false \
-Dintrospection=$([[ "$VIPS_VERSION" > "8.14" ]] && echo "disabled" || echo "false") \
-Dintrospection=$(if [[ "$VIPS_VERSION" > "8.14" ]]; then echo "disabled"; else echo "false"; fi) \
&& ninja -C _build \
&& ninja -C _build install \
&& cd .. \