Skip to content

Commit

Permalink
Fix to breaking change analyzer for experimental cmdlets.
Browse files Browse the repository at this point in the history
  • Loading branch information
NelsonDaniel committed Aug 18, 2017
1 parent 514b3f7 commit b3d0e7b
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,10 @@ public void Analyze(
foreach (var directory in probingDirectories)
{
var service = Path.GetFileName(directory);
if (service.ToLower().EndsWith("experiments"))
{
return;
}

var manifestFiles = Directory.EnumerateFiles(directory, "*.psd1").ToList();

Expand Down

0 comments on commit b3d0e7b

Please sign in to comment.