allwinner_a64/android/build/blueprint/.travis.gofmt.sh
2018-08-08 16:48:17 +08:00

7 lines
111 B
Bash
Executable file

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