whatcanGOwrong

This commit is contained in:
2024-09-19 21:38:24 -04:00
commit d0ae4d841d
17908 changed files with 4096831 additions and 0 deletions
@@ -0,0 +1,15 @@
#!/bin/sh
set -e
exit_code=0
make vendor
git diff --exit-code go.mod go.sum || exit_code=$?
if [ ${exit_code} -eq 0 ]; then
exit 0
fi
echo "please run \`make mod\` and check in the changes"
exit ${exit_code}