From 10af547866694023fa8067dad36999da6c9a8048 Mon Sep 17 00:00:00 2001 From: El RIDO Date: Thu, 14 Oct 2021 20:56:14 +0200 Subject: [PATCH] need these arguments to get split --- buildx.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/buildx.sh b/buildx.sh index d9fd415..84877b4 100755 --- a/buildx.sh +++ b/buildx.sh @@ -16,7 +16,7 @@ build_image() { --output type=image \ --pull \ --no-cache \ - "$@" \ + $@ \ . } @@ -25,7 +25,7 @@ push_image() { --platform linux/amd64,linux/386,linux/arm/v6,linux/arm/v7,linux/arm64,linux/ppc64le \ --progress plain \ --push \ - "$@" \ + $@ \ . }