We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cdf9144 commit 9fc54e3Copy full SHA for 9fc54e3
1 file changed
Partas.GitNet/ConfigCEs.fs
@@ -707,7 +707,7 @@ type ProjectConfigBuilder() =
707
[<CustomOperation "ignoreProject">]
708
member inline _.IgnoreProjectOp(state: ProjectConfig, value: string) = { state with IgnoredProjects = value :: state.IgnoredProjects }
709
710
- member _.IgnoreProjectOp(_: unit, value: string) = { init with IgnoredProjects = value :: state.IgnoredProjects }
+ member _.IgnoreProjectOp(_: unit, value: string) = { init with IgnoredProjects = value :: init.IgnoredProjects }
711
[<CustomOperation "ignoreProjects">]
712
member _.IgnoreProjectsOp(state: ProjectConfig, projects: string list) = { state with IgnoredProjects = projects }
713
0 commit comments