Skip to content

Commit b50d9ed

Browse files
authored
Merge pull request #10174 from geekosaur/validate-non-posix-test
fix non-POSIX [[ ]]
2 parents 2a09ec0 + 0b5cf15 commit b50d9ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

validate.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ CABALLISTBIN="${CABAL} list-bin --builddir=$BUILDDIR --project-file=$PROJECTFILE
329329
# of validate.sh
330330
# https://github.com/haskell/cabal/issues/9571
331331
# https://github.com/haskell/cabal/pull/10114
332-
RTSOPTS="$([[ $ARCH = "x86_64-windows" && -z "$CI" ]] && echo "+RTS --io-manager=native" || echo "")"
332+
RTSOPTS="$([ $ARCH = "x86_64-windows" ] && [ -z "$CI" ] && echo "+RTS --io-manager=native" || echo "")"
333333

334334
# header
335335
#######################################################################

0 commit comments

Comments
 (0)