* CI: disable check if Git repo contains uncommited changes

This commit is contained in:
Simon Zolin 2019-10-08 12:13:37 +03:00
parent e9186e6202
commit bd29b22f17
1 changed files with 8 additions and 8 deletions

16
ci.sh
View File

@ -24,13 +24,13 @@ make clean
make build/static/index.html make build/static/index.html
make make
if [[ -z "$(git status --porcelain)" ]]; then # if [[ -z "$(git status --porcelain)" ]]; then
# Working directory clean # # Working directory clean
echo "Git status is clean" # echo "Git status is clean"
else # else
echo "Git status is not clean and contains uncommited changes" # echo "Git status is not clean and contains uncommited changes"
echo "Please make sure there are no changes" # echo "Please make sure there are no changes"
exit 1 # exit 1
fi # fi
echo "AdGuard Home CI script finished successfully" echo "AdGuard Home CI script finished successfully"