Skip to content

Commit

Permalink
Improve build fail remediation logic to factor in newer docker versions
Browse files Browse the repository at this point in the history
Signed-off-by: Rahul Ganesh <rahulbabu95@gmail.com>
  • Loading branch information
rahulbabu95 committed Apr 23, 2024
1 parent 237fd96 commit f0b9795
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/lib/buildkit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ else
echo "Ensure container registry and repository exists!!"
echo "Try running make create-ecr-repos to create ecr repositories in your aws account."
echo "******************************************************"
elif [ "$CMD" = "docker buildx" ] && grep -i -q "\(multiple platforms\|OCI exporter\) feature is currently not supported" $log_file; then
elif [ "$CMD" = "docker buildx" ] && grep -i -q "\(multiple platforms\|OCI exporter\|Multi-platform\)" $log_file; then
echo "******************************************************"
echo "When using docker buildx with multiple platforms you can not use the default builder."
echo "You need to create another builder using the docker-container or remote driver."
Expand Down

0 comments on commit f0b9795

Please sign in to comment.