mirror of
https://github.com/DefinedNet/mobile_nebula.git
synced 2025-01-18 19:27:05 +00:00
10 lines
No EOL
247 B
Bash
Executable file
10 lines
No EOL
247 B
Bash
Executable file
#!/bin/sh
|
|
DIRS="lib test"
|
|
EXIT=0
|
|
|
|
for DIR in $DIRS; do
|
|
OUT="$(flutter format -l 120 --suppress-analytics "$DIR" | sed -e "s/^Formatted \(.*\)/::error file=$DIR\/\1::Not formatted/g")"
|
|
echo "$OUT" | grep "::error" && EXIT=1
|
|
done
|
|
|
|
exit $EXIT |