projects
/
brevno-suite
/
hugo
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
01ec44a
)
Try to fix mysterious test failures on Travis
author
bep
<bjorn.erik.pedersen@gmail.com>
Thu, 22 Jan 2015 23:36:47 +0000
(
00:36
+0100)
committer
bep
<bjorn.erik.pedersen@gmail.com>
Thu, 22 Jan 2015 23:36:47 +0000
(
00:36
+0100)
commands/server.go
patch
|
blob
|
history
diff --git
a/commands/server.go
b/commands/server.go
index 98ea60f4e5909425b82ba87d3f8bb213b902b3e2..6ce679c6e58ef53c11b6528275d3d0d975a0ae31 100644
(file)
--- 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)