mirror of
https://github.com/joohoi/acme-dns.git
synced 2025-01-22 02:07:23 +07:00
8 lines
105 B
Bash
Executable File
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
|