Files
flame/scripts/format.sh
2021-02-22 15:59:40 -05:00

8 lines
169 B
Bash
Executable File

#!/usr/bin/env bash
FORMAT_ISSUES=$(flutter format --set-exit-if-changed -n .)
if [ $? -eq 1 ]; then
echo "flutter format issues on"
echo $FORMAT_ISSUES
exit 1
fi