Skip to content

Commit

Permalink
make output file prefixes for diffs for matcher be unique, to prevent…
Browse files Browse the repository at this point in the history
… overwriting output files for diffs for wildcard paths removal
  • Loading branch information
Konrad Jamrozik committed Jan 30, 2023
1 parent 222adad commit 4572f59
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -158,14 +158,14 @@ public void MatcherDiffForAzureSdkTools()
// Empty string here means to just use the root directory of the local "azure-sdk-tools" clone,
// which is supposed to contain the code you are reading right now.
targetDirPathSuffix: "",
outputFilePrefix: "azure-sdk-tools",
outputFilePrefix: "azure-sdk-tools-matcher",
ignoredPathPrefixes: ".git|artifacts");

[Test] // Runtime: ~1m 30s
public void MatcherDiffForAzureSdkForNet()
=> WriteMatcherDiffToCsv(
targetDirPathSuffix: LangRepoTargetDirPathSuffix("net"),
outputFilePrefix: "azure-sdk-for-net");
outputFilePrefix: "azure-sdk-for-net-matcher");

#endregion

Expand Down

0 comments on commit 4572f59

Please sign in to comment.