Skip to content

Commit 44028b0

Browse files
authored
Merge pull request #791 from haskell-CI/sh-parens
Fix arithmetic parenthesis
2 parents 1432598 + f75ce59 commit 44028b0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

haskell-ci.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: haskell-ci
3-
version: 0.19.20250710
3+
version: 0.19.20250722
44
synopsis: Haskell CI script generator
55
description:
66
Script generator (@haskell-ci@) for

src/HaskellCI/ShVersionRange.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ freeToArith z
217217
$ "! (" ++ go 0 x ++ ") || " ++ go 2 y
218218

219219
parens :: Bool -> String -> String
220-
parens True s = "{ " ++ s ++ "; }"
220+
parens True s = "(" ++ s ++ ")"
221221
parens False s = s
222222

223223
-------------------------------------------------------------------------------

0 commit comments

Comments
 (0)