We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
artifactory
1 parent b240b2b commit 253d3c4Copy full SHA for 253d3c4
src/code/V2ServerAPICalls.cs
@@ -60,7 +60,7 @@ public V2ServerAPICalls (PSRepositoryInfo repository, PSCmdlet cmdletPassedIn, N
60
_sessionClient.DefaultRequestHeaders.TryAddWithoutValidation("User-Agent", userAgentString);
61
var repoURL = repository.Uri.ToString().ToLower();
62
_isADORepo = repoURL.Contains("pkgs.dev.azure.com") || repoURL.Contains("pkgs.visualstudio.com");
63
- _isJFrogRepo = repoURL.Contains("jfrog");
+ _isJFrogRepo = repoURL.Contains("jfrog") || repoURL.Contains("artifactory");
64
_isPSGalleryRepo = repoURL.Contains("powershellgallery.com/api/v2");
65
}
66
0 commit comments