From 71fe85df9b7193f790fbb5e3af415b176fdb6a4f Mon Sep 17 00:00:00 2001 From: bep Date: Fri, 23 Jan 2015 00:36:47 +0100 Subject: [PATCH] Try to fix mysterious test failures on Travis --- commands/server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/server.go b/commands/server.go index 98ea60f4e..6ce679c6e 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)