/
githubmr
/
facebook-react-native
Обзор
Документация
Войти
/
githubmr
/
facebook-react-native
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
.github/workflow-scripts/exec_swallow_error.sh
16 строк
383 B
Riccardo Cipolleschi
Move analisys scripts to .github folder (#49123)
03 фев 2025, 21:02
03 фев 2025, 21:02
ae7175d
Код
Авторство
О чём код?
#!/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. # execute command "$@" # check status STATUS=$? if [ $STATUS == 0 ]; then echo "Command " "$@" " completed successfully" else echo "Command " "$@" " exited with error status $STATUS" fi