From 0244282d9613f8c3129043aef8da3eb522265183 Mon Sep 17 00:00:00 2001 From: Alejandro Pedraza Date: Wed, 27 Sep 2023 17:47:11 -0500 Subject: [PATCH] Before building images, create `target` dir if necessary (#11433) --- bin/_docker.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/_docker.sh b/bin/_docker.sh index 4e51e77ca..1e9439834 100644 --- a/bin/_docker.sh +++ b/bin/_docker.sh @@ -92,6 +92,7 @@ See https://github.com/docker/buildx/issues/59 for more details' fi log_debug " :; docker buildx $rootdir $cache_params $output_params -t $repo:$tag -f $file $*" + mkdir -p target # shellcheck disable=SC2086 docker buildx build "$rootdir" $cache_params \ $output_params \