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

12 строки
132 B
Bash
Executable File

#!/bin/bash
set -xe
if [[ ! -z "$(git status -s)" ]]
then
echo "there are some modified files"
git status
exit 1
fi