From: bep Date: Thu, 22 Jan 2015 23:36:47 +0000 (+0100) Subject: Try to fix mysterious test failures on Travis X-Git-Tag: v0.13~128 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=71fe85df;p=brevno-suite%2Fhugo Try to fix mysterious test failures on Travis --- diff --git a/commands/server.go b/commands/server.go index 98ea60f4..6ce679c6 100644 --- a/commands/server.go +++ b/commands/server.go @@ -146,7 +146,7 @@ func fixUrl(s string) (string, error) { if !strings.HasPrefix(s, "http://") && !strings.HasPrefix(s, "https://") { s = "http://" + s } - if !strings.HasSuffix(s, "/") { + if len(s) > 0 && !strings.HasSuffix(s, "/") { s = s + "/" } u, err := url.Parse(s)