Brendan Abolivier 8 gadus atpakaļ
vecāks
revīzija
c64fe2994b
Parakstījis: Brendan Abolivier <contact@brendanabolivier.com> GPG atslēgas ID: 8EF1500759F70623
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1
    1
      welcomehome

+ 1
- 1
welcomehome Parādīt failu

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