balena-supervisor/gosuper/test_formatting.sh
Pablo Carranza Vélez 9bc2f6212d Handle App not found in purge, + cleanup
* gosuper in dockerignored folder
* correctly handle app not found in purge
* test formatting in test-gosuper
* Fix test-gosuper
* DRY up test-integration
2015-10-13 13:43:36 -03:00

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