Skip to content
Snippets Groups Projects
Unverified Commit b50d9edd authored by mergify[bot]'s avatar mergify[bot] Committed by GitHub
Browse files

Merge pull request #10174 from geekosaur/validate-non-posix-test

fix non-POSIX [[ ]]
parents 2a09ec05 0b5cf151
No related branches found
No related tags found
No related merge requests found
Pipeline #97869 passed
...@@ -329,7 +329,7 @@ CABALLISTBIN="${CABAL} list-bin --builddir=$BUILDDIR --project-file=$PROJECTFILE ...@@ -329,7 +329,7 @@ CABALLISTBIN="${CABAL} list-bin --builddir=$BUILDDIR --project-file=$PROJECTFILE
# of validate.sh # of validate.sh
# https://github.com/haskell/cabal/issues/9571 # https://github.com/haskell/cabal/issues/9571
# https://github.com/haskell/cabal/pull/10114 # 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 # header
####################################################################### #######################################################################
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment