mirror of
https://github.com/rqlite/rqlite.git
synced 2022-10-30 02:37:32 +03:00
7 lines
181 B
Bash
Executable File
7 lines
181 B
Bash
Executable File
#!/bin/bash
|
|
fmtcount=`git ls-files | grep '.go$' | xargs gofmt -l 2>&1 | wc -l`
|
|
if [ $fmtcount -gt 0 ]; then
|
|
echo "run 'go fmt ./...' to format your source code."
|
|
exit 1
|
|
fi
|