Browse Source

Another try to fix CI image build

DarthSim 1 year ago
parent
commit
e0091ad776
1 changed files with 1 additions and 1 deletions
  1. 1 1
      .github/ci-docker/Dockerfile

+ 1 - 1
.github/ci-docker/Dockerfile

@@ -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 .. \