Parcourir la source

Ajusted regexp

Brendan Abolivier il y a 8 ans
Parent
révision
c64fe2994b
Signé par: Brendan Abolivier <contact@brendanabolivier.com> ID de la clé GPG: 8EF1500759F70623
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1
    1
      welcomehome

+ 1
- 1
welcomehome Voir le fichier

@@ -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