Update bitbucket.go (#499)

This commit is contained in:
gabrie30
2025-03-21 18:56:05 -07:00
committed by GitHub
parent 9eb6f6cdc4
commit 8e58a86441
2 changed files with 2 additions and 1 deletions

View File

@@ -10,6 +10,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
### Removed
### Fixed
- Gitea internal repos token injection on https clones; thanks @drmacdon
- BitBucket backup with prune removes repositories just cloned; thanks @dannuralogix
### Security
## [1.11.0] - 9/28/2024

View File

@@ -83,7 +83,7 @@ func (_ Bitbucket) filter(resp []bitbucket.Repository) (repoData []Repo, err err
r := Repo{}
r.Name = a.Name
r.Path = r.Name
r.Path = a.Full_name
if os.Getenv("GHORG_BRANCH") == "" {
r.CloneBranch = a.Mainbranch.Name
} else {