mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-27 12:21:03 +00:00
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:
commit
a8e2dfd025
1 changed files with 2 additions and 1 deletions
|
@ -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,
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in a new issue