Skip to content

Commit

Permalink
Fix issue in build.fsx (fsprojects#3004)
Browse files Browse the repository at this point in the history
  • Loading branch information
josh-degraw committed Nov 27, 2023
1 parent 7849a18 commit 12f373e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ pipeline "FormatChanged" {
|| line.EndsWith(".fsx", StringComparison.Ordinal)
|| line.EndsWith(".fsi", StringComparison.Ordinal))
then
Some(line.Replace("AM ", "").Replace("M ", ""))
Some(line.Replace("AM ", "").Replace("MM ", "").Replace("M ", ""))
else
None)
|> String.concat " "
Expand Down

0 comments on commit 12f373e

Please sign in to comment.