diff --git a/src/detectors/utils/ScanningStrategyDetectorUtils.ts b/src/detectors/utils/ScanningStrategyDetectorUtils.ts index 1da19cbb5..d3d21b2d0 100644 --- a/src/detectors/utils/ScanningStrategyDetectorUtils.ts +++ b/src/detectors/utils/ScanningStrategyDetectorUtils.ts @@ -7,6 +7,10 @@ export class ScanningStrategyDetectorUtils { return this.testPath(path, /github\.com/); } + static isBitbucketPath(path: string): boolean { + return this.testPath(path, /bitbucket\.com/); + } + static isRemoteServicePath(path: string): boolean { return this.isGitHubPath(path); // || ... }