#!/usr/bin/env bash# Check gofmtecho"==> Checking that code complies with gofmt requirements..."gofmt_files=$(gofmt-l`find.-name'*.go'|grep-vvendor`)if[[-n${gofmt_files}]];thenecho'gofmt needs running on the following files:'echo"${gofmt_files}"echo"You can use the command: \`make fmt\` to reformat code."exit1fiexit0