Skip to content

Commit

Permalink
fix: --IgnoreDirectories delimited by commas (#807)
Browse files Browse the repository at this point in the history
  • Loading branch information
melotic committed Sep 26, 2023
1 parent 53acc7b commit 641c827
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ public class ScanSettings : BaseSettings

[CommandOption("--IgnoreDirectories", IsHidden = true)]
[Description(
"Filters out specific directories, providing individual directory paths separated by semicolon. Obsolete in favor of DirectoryExclusionList")]
[TypeConverter(typeof(SemicolonDelimitedConverter))]
"Filters out specific directories, providing individual directory paths separated by commas. Obsolete in favor of DirectoryExclusionList")]
[TypeConverter(typeof(CommaDelimitedConverter))]
public IEnumerable<string> DirectoryExclusionListObsolete { get; set; }

[CommandOption("--SourceDirectory")]
Expand Down

0 comments on commit 641c827

Please sign in to comment.