Files
src.dualinventive.com/go/lib/vendor/github.com/stretchr/testify/.travis.gofmt.sh
2024-08-09 12:10:16 +02:00

8 lines
105 B
Bash
Executable File

#!/bin/bash
if [ -n "$(gofmt -l .)" ]; then
echo "Go code is not formatted:"
gofmt -d .
exit 1
fi