mirror of
https://github.com/trufflesecurity/trufflehog.git
synced 2024-11-10 07:04:24 +00:00
Fix GitUrl Return (#987)
Co-authored-by: ahrav <ahravdutta02@gmail.com>
This commit is contained in:
parent
ee6817ad85
commit
fc6fd29f3f
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ func NormalizeBitbucketRepo(repoURL string) (string, error) {
|
|||
return "", errors.New("Bitbucket requires https repo urls: e.g. https://bitbucket.org/org/repo.git")
|
||||
}
|
||||
|
||||
return NormalizeOrgRepoURL("Gitlab", repoURL)
|
||||
return NormalizeOrgRepoURL("Bitbucket", repoURL)
|
||||
}
|
||||
|
||||
func NormalizeGerritProject(project string) (string, error) {
|
||||
|
|
Loading…
Reference in a new issue