Explorar el Código

Ajusted regexp

Brendan Abolivier hace 8 años
padre
commit
c64fe2994b
Firmado por: Brendan Abolivier <contact@brendanabolivier.com> ID clave GPG: 8EF1500759F70623
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      welcomehome

+ 1
- 1
welcomehome Ver fichero

@@ -19,7 +19,7 @@ check_url() {
19 19
     # Check if URL is starting with "http(s)://"
20 20
     # Returns the same code as grep, which is 1 if incorrect,
21 21
     # 0 if correct
22
-    echo $1 | grep -E "https?\://"
22
+    echo $1 | grep -E "^https?\://"
23 23
     return $?
24 24
 }
25 25