Seems like folks keep adding a trailing / to the DRONE_SERVER env. This should remove it if it exists and not worry if it doesn't

This commit is contained in:
Joachim Hill-Grannec 2016-08-12 17:04:42 -07:00
parent e0b7b31a5d
commit c884a9f210

View file

@ -13,6 +13,7 @@ import (
"github.com/Sirupsen/logrus"
"github.com/codegangsta/cli"
"strings"
)
// AgentCmd is the exported command for starting the drone agent.
@ -157,7 +158,7 @@ func start(c *cli.Context) {
)
client := client.NewClientToken(
c.String("drone-server"),
strings.TrimRight(c.String("drone-server"),"/"),
accessToken,
)