mirror of
https://github.com/zr-hebo/sniffer-agent.git
synced 2025-08-09 13:20:47 +08:00
8 lines
165 B
Bash
Executable File
8 lines
165 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd "$(dirname $0)"
|
|
if [ -n "$(go fmt ./...)" ]; then
|
|
echo "Go code is not formatted, run 'go fmt github.com/google/stenographer/...'" >&2
|
|
exit 1
|
|
fi
|