hack: lint scripts

Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax
2022-10-23 23:04:14 +02:00
parent 9c69ba6f6f
commit 85723a138f
4 changed files with 15 additions and 15 deletions

View File

@@ -2,10 +2,10 @@
set -eu -o pipefail
: ${BUILDX_CMD=docker buildx}
: "${BUILDX_CMD=docker buildx}"
output=$(mktemp -d -t buildx-output.XXXXXXXXXX)
(set -x ; ${BUILDX_CMD} bake --set "*.output=$output" update-vendor)
rm -rf ./vendor
cp -R "$output"/out/* .
rm -rf $output
rm -rf "$output"