1 #!/bin/bash 2 3 if [ -n "$(gofmt -l .)" ]; then 4 echo "Go code is not formatted:" 5 gofmt -d . 6 exit 1 7 fi 8