Skip to content

Commit

Permalink
Merge pull request #10174 from geekosaur/validate-non-posix-test
Browse files Browse the repository at this point in the history
fix non-POSIX [[ ]]
  • Loading branch information
mergify[bot] authored Jul 6, 2024
2 parents 2a09ec0 + 0b5cf15 commit b50d9ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion validate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ CABALLISTBIN="${CABAL} list-bin --builddir=$BUILDDIR --project-file=$PROJECTFILE
# of validate.sh
# https://github.com/haskell/cabal/issues/9571
# https://github.com/haskell/cabal/pull/10114
RTSOPTS="$([[ $ARCH = "x86_64-windows" && -z "$CI" ]] && echo "+RTS --io-manager=native" || echo "")"
RTSOPTS="$([ $ARCH = "x86_64-windows" ] && [ -z "$CI" ] && echo "+RTS --io-manager=native" || echo "")"

# header
#######################################################################
Expand Down

0 comments on commit b50d9ed

Please sign in to comment.