Merge pull request #2155 from frebib/fix-repo-user
Fix extractRepositoryName() in agent logs
This commit is contained in:
commit
e11dd116a2
1 changed files with 1 additions and 2 deletions
|
@ -414,8 +414,7 @@ func (c *credentials) RequireTransportSecurity() bool {
|
|||
|
||||
// extract repository name from the configuration
|
||||
func extractRepositoryName(config *backend.Config) string {
|
||||
return config.Stages[0].Steps[0].Environment["DRONE_REPO_NAME"] + "/" +
|
||||
config.Stages[0].Steps[0].Environment["DRONE_REPO_NAME"]
|
||||
return config.Stages[0].Steps[0].Environment["DRONE_REPO"]
|
||||
}
|
||||
|
||||
// extract build number from the configuration
|
||||
|
|
Loading…
Reference in a new issue