Skip to content

Commit d1077a3

Browse files
author
Maxime Mangel
committed
fix: add missing parenthesis (trying to fix error occurring on CI and not on my machine)
1 parent 841ed01 commit d1077a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Fable.Transforms/Global/Compiler.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ module CompilerExt =
119119
actualMajor > expectedMajor
120120
|| (actualMajor = expectedMajor
121121
&& (actualMinor > expectedMinor
122-
|| actualMinor = expectedMinor && actualPatch >= expectedPatch))
122+
|| (actualMinor = expectedMinor && actualPatch >= expectedPatch)))
123123
with _ ->
124124
false
125125

0 commit comments

Comments
 (0)