haskell-formatter-2.0.3: format.sh
#!/bin/bash
set -o errexit
set -o nounset
set -o pipefail
find Setup.hs src testsuite/src -name '*.hs' -type f -print0 \
| xargs -0 -I {} -n 1 stack run -- --force --input {} --output {}
#!/bin/bash
set -o errexit
set -o nounset
set -o pipefail
find Setup.hs src testsuite/src -name '*.hs' -type f -print0 \
| xargs -0 -I {} -n 1 stack run -- --force --input {} --output {}