mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-28 17:48:52 +00:00
9 lines
154 B
Bash
9 lines
154 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [[ -n "$(gofmt -l .)" ]]; then
|
||
|
echo "Bad formatting, run make format-gosuper to fix it."
|
||
|
exit 1
|
||
|
else
|
||
|
echo "Formatting test passed."
|
||
|
fi
|