Brendan Abolivier 8 lat temu
rodzic
commit
c64fe2994b
Podpisane przez: Brendan Abolivier <contact@brendanabolivier.com> ID klucza GPG: 8EF1500759F70623
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1
    1
      welcomehome

+ 1
- 1
welcomehome Wyświetl plik

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