This commit is contained in:
Timo Schmidt 2023-03-28 02:39:20 +02:00
parent 34b2fd5f86
commit 1aaf30787a
1 changed files with 3 additions and 3 deletions

View File

@ -74,9 +74,9 @@ check () {
git clone --quiet "${URL}" "${DIR}" git clone --quiet "${URL}" "${DIR}"
if [ -d "${DIR}" ]; then if [ -d "${DIR}" ]; then
norminette "${DIR}" && printf '\033[42m%s\033[m\n' "Norminette success" || printf '\033[41m%s\033[m\n' "Norminette fail!!!" norminette "${DIR}" && printf '\033[30;102m%s\033[m\n' "Norminette success" || printf '\033[30;101m%s\033[m\n' "Norminette fail!!!"
rm -rf "${DIR}" rm -rf "${DIR}"
else else
printf '\033[41m%s\033[m\n' "Could not clone the repo" printf '\033[30;101m%s\033[m\n' "Could not clone the repo"
fi fi
} }