Skip to content
This repository was archived by the owner on Feb 12, 2025. It is now read-only.

Commit 583b7b9

Browse files
obonesRubenWillems
authored andcommitted
Issue 307: Must not put leading dollar signs in documentation, they are preventing the filter from working
1 parent 69d41c0 commit 583b7b9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

project/core/sourcecontrol/FilteredSourceControl.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,15 @@ namespace ThoughtWorks.CruiseControl.Core.Sourcecontrol
4343
/// </sourceControlProvider>
4444
/// <inclusionFilters>
4545
/// <pathFilter>
46-
/// <pattern>$/Kunigunda/ServiceLocator/Sources/**/*.*</pattern>
46+
/// <pattern>/Kunigunda/ServiceLocator/Sources/**/*.*</pattern>
4747
/// </pathFilter>
4848
/// </inclusionFilters>
4949
/// <exclusionFilters>
5050
/// <pathFilter>
51-
/// <pattern>$/Kunigunda/ServiceLocator/Sources/Kunigunda.ServiceLocator/AssemblyInfo.cs</pattern>
51+
/// <pattern>/Kunigunda/ServiceLocator/Sources/Kunigunda.ServiceLocator/AssemblyInfo.cs</pattern>
5252
/// </pathFilter>
5353
/// <pathFilter>
54-
/// <pattern>$/**/*.vssscc</pattern>
54+
/// <pattern>/**/*.vssscc</pattern>
5555
/// </pathFilter>
5656
/// <userFilter>
5757
/// <names><name>Perry</name><name>Joe</name></names>

project/core/sourcecontrol/PathFilter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ namespace ThoughtWorks.CruiseControl.Core.Sourcecontrol
1717
/// <example>
1818
/// <code>
1919
/// &lt;pathFilter&gt;
20-
/// &lt;pattern&gt;$/Kunigunda/ServiceLocator/Sources/Kunigunda.ServiceLocator/AssemblyInfo.cs&lt;/pattern&gt;
20+
/// &lt;pattern&gt;/Kunigunda/ServiceLocator/Sources/Kunigunda.ServiceLocator/AssemblyInfo.cs&lt;/pattern&gt;
2121
/// &lt;/pathFilter&gt;
2222
/// </code>
2323
/// </example>

0 commit comments

Comments
 (0)