mirror of
https://github.com/status-im/whisper.git
synced 2025-02-12 18:57:09 +00:00
8 lines
105 B
Bash
8 lines
105 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [ -n "$(gofmt -l .)" ]; then
|
||
|
echo "Go code is not formatted:"
|
||
|
gofmt -d .
|
||
|
exit 1
|
||
|
fi
|