Skip to content

Commit

Permalink
fix: add missing parenthesis (trying to fix error occurring on CI and…
Browse files Browse the repository at this point in the history
… not on my machine)
  • Loading branch information
MangelMaxime committed Nov 25, 2024
1 parent 841ed01 commit d1077a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Fable.Transforms/Global/Compiler.fs
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ module CompilerExt =
actualMajor > expectedMajor
|| (actualMajor = expectedMajor
&& (actualMinor > expectedMinor
|| actualMinor = expectedMinor && actualPatch >= expectedPatch))
|| (actualMinor = expectedMinor && actualPatch >= expectedPatch)))
with _ ->
false

Expand Down

0 comments on commit d1077a3

Please sign in to comment.