mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
8 lines
123 B
Bash
8 lines
123 B
Bash
#!/bin/bash
|
|
|
|
if [ -n "$(gofmt -s -l .)" ]; then
|
|
echo "Go code is not properly formatted:"
|
|
gofmt -s -d -e .
|
|
exit 1
|
|
fi
|