HTTP API for pinning plugin versions (#25105)

This commit is contained in:
Tom Proctor
2024-01-30 10:24:33 +00:00
committed by GitHub
parent 1b8bb7e75a
commit 78ef25e70c
11 changed files with 681 additions and 194 deletions

View File

@@ -38,6 +38,10 @@ check_fmt() {
echo "--> The following files need to be reformatted with gofumpt"
printf '%s\n' "${malformed[@]}"
echo "Run \`make fmt\` to reformat code."
for file in "${malformed[@]}"; do
gofumpt -w "$file"
echo "$(git diff --no-color "$file")"
done
exit 1
fi
}