unplugged-vendor/build/blueprint/.gofmt.sh

8 lines
111 B
Bash
Raw Permalink Normal View History

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