mirror of
https://github.com/xtaci/kcptun.git
synced 2024-04-21 12:32:32 +00:00
8 lines
165 B
Bash
8 lines
165 B
Bash
#!/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
|