Merge pull request #1756 from josmo/clean-trailing-slash

Remove the trailing / from DRONE_SERVER env in agent when it's there
This commit is contained in:
Brad Rydzewski 2016-08-12 17:22:00 -07:00 committed by GitHub
commit a8e2dfd025

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,
)