/
githubmirror
/
immutable-js
Обзор
Документация
Войти
/
githubmirror
/
immutable-js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
resources/check-git-clean.sh
13 строк
308 B
Lee Byron
Clean up scripts & resources (#1861)
20 июл 2021, 22:53
Не верифицирован
20 июл 2021, 22:53
0101c06
Код
Авторство
О чём код?
#!/bin/bash -e if ! git diff --quiet; then echo " $(tput setf 4)The CI build resulted in additional changed files. Typically this is due to not running $(tput smul)npm test$(tput rmul) locally before submitting a pull request. The following changes were found:$(tput sgr0) "; git diff --exit-code; fi;