/
Kryuchok
/
flutter
Обзор
Документация
Войти
/
Kryuchok
/
flutter
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
dev/checks
25 строк
596 B
Matan Lurey
Start a `dev/checks_tool` directory. (#170493)
14 июн 2025, 18:51
Не верифицирован
14 июн 2025, 18:51
d8d53ea
Код
Авторство
О чём код?
#!/usr/bin/env bash # Copyright 2014 The Flutter Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. set -e # Needed because if it is set, cd may print the path it changed to. unset CDPATH # Lookup the parent directory of the script (../), the Flutter SDK root. PROG_NAME="${BASH_SOURCE[0]}" DEV_DIR="$( cd "${PROG_NAME%/*}" pwd -P )" FLUTTER_ROOT="$( cd "$DEV_DIR/.." pwd -P )" # Run the tool. pushd "$FLUTTER_ROOT/dev/checks_tool" >/dev/null dart run --resident --quiet bin/checks.dart popd >/dev/null