mirror of
https://github.com/git-chglog/git-chglog.git
synced 2026-01-22 18:06:11 +00:00
7 lines
105 B
Bash
Executable file
7 lines
105 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ -n "$(gofmt -l .)" ]; then
|
|
echo "Go code is not formatted:"
|
|
gofmt -d .
|
|
exit 1
|
|
fi
|