Skip to content

Commit 9fc54e3

Browse files
committed
fix: fix typo in CEs
1 parent cdf9144 commit 9fc54e3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Partas.GitNet/ConfigCEs.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -707,7 +707,7 @@ type ProjectConfigBuilder() =
707707
[<CustomOperation "ignoreProject">]
708708
member inline _.IgnoreProjectOp(state: ProjectConfig, value: string) = { state with IgnoredProjects = value :: state.IgnoredProjects }
709709
[<CustomOperation "ignoreProject">]
710-
member _.IgnoreProjectOp(_: unit, value: string) = { init with IgnoredProjects = value :: state.IgnoredProjects }
710+
member _.IgnoreProjectOp(_: unit, value: string) = { init with IgnoredProjects = value :: init.IgnoredProjects }
711711
[<CustomOperation "ignoreProjects">]
712712
member _.IgnoreProjectsOp(state: ProjectConfig, projects: string list) = { state with IgnoredProjects = projects }
713713
[<CustomOperation "ignoreProjects">]

0 commit comments

Comments
 (0)