Explorar el Código

Fixed regex on line 186 of wm

pull/664/head
Georgi D. Karapetrov hace 3 años
padre
commit
923e59cff7
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      bin/mw

+ 1
- 1
bin/mw Ver fichero

@@ -183,7 +183,7 @@ delete() { if [ -z "${fulladdr+x}" ]; then
askinfo() { \
[ -z "$fulladdr" ] && echo "Give the full email address to add:" &&
read -r fulladdr
while ! echo "$fulladdr" | grep -qE "^.+@.+\.[A-z]+$"; do
while ! echo "$fulladdr" | grep -qE "^.+@.+\.[a-Z]+$"; do
echo "\`$fulladdr\` is not a valid email address. Please retype the address:"
read -r fulladdr
done


Cargando…
Cancelar
Guardar