mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
11 lines
180 B
Bash
Executable File
11 lines
180 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
COMPILE_COMMANDS="out/compile_commands.json"
|
|
if [ ! -f $COMPILE_COMMANDS ]; then
|
|
./flutter/tools/gn
|
|
fi
|
|
|
|
dart flutter/ci/lint.dart $COMPILE_COMMANDS flutter/
|