diff --git a/scripts/install b/scripts/install index ed76872..3b1d067 100644 --- a/scripts/install +++ b/scripts/install @@ -20,7 +20,7 @@ if [[ ! $? -eq 0 ]]; then fi # 'password' must be >= 8 characters -if [[ $(expr length $password) -lt "8" ]]; then +if [[ $(expr length "$password") -lt "8" ]]; then echo "Error : the password must be >= 8 characters" exit 1 fi