8 lines
113 B
Bash
8 lines
113 B
Bash
|
#!/usr/bin/bash
|
||
|
|
||
|
if [[ -z "$FIX" ]]; then
|
||
|
[ -z "$(gofmt -s -l ./)" ] || exit 1
|
||
|
else
|
||
|
gofmt -s -l -w ./
|
||
|
fi
|