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.
flux-feed/scripts/check_go_fmt.sh

11 lines
207 B
Bash

#!/usr/bin/env bash
set -eo pipefail
IFS=$'\n\t'
if [ -n "$(gofmt -l .)" ]; then
echo "Failure! The following files need formatting with go fmt:"
gofmt -l .
exit 1
fi
echo "All go fmt checks passed!"