mirror of
https://github.com/nisrulz/flutter-examples.git
synced 2025-05-17 13:05:53 +08:00
12 lines
222 B
Bash
12 lines
222 B
Bash
#!/bin/sh
|
|
|
|
OUTPUT="$(flutter analyze)"
|
|
echo "$OUTPUT"
|
|
echo
|
|
if grep -q "error •" echo "$OUTPUT"; then
|
|
echo "flutter analyze found errors"
|
|
exit 1
|
|
else
|
|
echo "flutter analyze didn't find any errors"
|
|
exit 0
|
|
fi |