ARO-RP/hack/ci-utils/isClean.sh

12 строки
132 B
Bash
Исходник Обычный вид История

2022-10-18 10:11:01 +03:00
#!/bin/bash
2022-10-18 10:13:34 +03:00
set -xe
2022-10-18 10:11:01 +03:00
if [[ ! -z "$(git status -s)" ]]
then
echo "there are some modified files"
git status
exit 1
fi