/
githubmr
/
facebook-react-native
Обзор
Документация
Войти
/
githubmr
/
facebook-react-native
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
.github/workflow-scripts/analyze_scripts.sh
25 строк
651 B
Riccardo Cipolleschi
Remove last remnant of CircleCI from CI scripts (#49201)
05 фев 2025, 20:55
05 фев 2025, 20:55
1dd464d
Код
Авторство
О чём код?
#!/bin/bash # Copyright (c) Meta Platforms, Inc. and affiliates. # # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. GITHUB_OWNER=-facebook GITHUB_REPO=-react-native export GITHUB_OWNER export GITHUB_REPO if [ -x "$(command -v shellcheck)" ]; then IFS=$'\n' find . \ -type f \ -not -path "*node_modules*" \ -not -path "*third-party*" \ -name '*.sh' \ -exec sh -c 'shellcheck "$1"' -- {} \; else echo 'shellcheck is not installed. See https://github.com/facebook/react-native/wiki/Development-Dependencies#shellcheck for instructions.' exit 1 fi