mirror of
https://github.com/containers/skopeo.git
synced 2025-08-27 02:29:48 +00:00
Bumps [github.com/containers/storage](https://github.com/containers/storage) from 1.33.1 to 1.33.2. - [Release notes](https://github.com/containers/storage/releases) - [Changelog](https://github.com/containers/storage/blob/main/docs/containers-storage-changes.md) - [Commits](https://github.com/containers/storage/compare/v1.33.1...v1.33.2) --- updated-dependencies: - dependency-name: github.com/containers/storage dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
17 lines
358 B
Bash
Executable File
17 lines
358 B
Bash
Executable File
#!/bin/bash
|
|
|
|
errors=$(go vet -tags="${BUILDTAGS}" $mod_vendor $(go list $mod_vendor -e ./...))
|
|
|
|
if [ -z "$errors" ]; then
|
|
echo 'Congratulations! All Go source files have been vetted.'
|
|
else
|
|
{
|
|
echo "Errors from go vet:"
|
|
echo "$errors"
|
|
echo
|
|
echo 'Please fix the above errors. You can test via "go vet" and commit the result.'
|
|
echo
|
|
} >&2
|
|
false
|
|
fi
|