You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
rm -rf ./out
|
|
|
|
docker buildx bake --print
|
|
docker buildx bake --sync-output
|
|
|
|
if [[ ! -f ./out/foo || ! -f ./out/bar ]]; then
|
|
echo >&2 "error: missing output files"
|
|
exit 1
|
|
fi
|