qemush : KO à la place de ERROR dans la fonction pour afficher une erreur

This commit is contained in:
Ahurac 2024-01-21 13:53:33 +01:00
parent 3b15e39dae
commit 541416cd26

View file

@ -40,7 +40,7 @@ umask 027
# Function to print a colored error # Function to print a colored error
perror() { perror() {
>&2 printf '\033[1;31mERROR:\033[0m \033[1m%s\033[0m\n' "$*" >&2 printf '\033[1;31mKO:\033[0m \033[1m%s\033[0m\n' "$*"
} }
# Function to show the usage # Function to show the usage