From 354aaf5c4e483a9e0632fbd1ea0ab5ade1ee6701 Mon Sep 17 00:00:00 2001 From: Olivier Tremblay Date: Thu, 28 Mar 2024 09:22:36 -0400 Subject: [PATCH] Remove --progress flag since it doesn't work for recent Windows (#192) The --progress flag is not supported on the more recent Windows machine builds --- src/scripts/build.sh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/scripts/build.sh b/src/scripts/build.sh index d49167e..b535589 100644 --- a/src/scripts/build.sh +++ b/src/scripts/build.sh @@ -66,10 +66,6 @@ if [ -n "$PARAM_CACHE_FROM" ]; then build_args+=("--cache-from=$PARAM_CACHE_FROM") fi -if [ "$PARAM_USE_BUILDKIT" -eq 1 ]; then - build_args+=("--progress=plain") -fi - # The context must be the last argument. build_args+=("$PARAM_DOCKER_CONTEXT")