bb7ecb7fb3
Change-Id: I8a03ca383c53bbcacc403cb954fc2ec2af8fe33d
7 lines
111 B
Bash
Executable file
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
|