mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-19 21:57:54 +00:00
9bc2f6212d
* gosuper in dockerignored folder * correctly handle app not found in purge * test formatting in test-gosuper * Fix test-gosuper * DRY up test-integration
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
|