From c3caf85bc1093ba3f7757fc7abac5d573b1df28d Mon Sep 17 00:00:00 2001 From: Patrick Aldis Date: Thu, 2 Jul 2026 12:19:40 +0100 Subject: [PATCH] Fix haskell just --- build-support/haskell.just | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-support/haskell.just b/build-support/haskell.just index 5d4c6b2..0a73992 100644 --- a/build-support/haskell.just +++ b/build-support/haskell.just @@ -3,12 +3,12 @@ test: check-format: git ls-files -z '*.hs' | xargs -P 12 -0 fourmolu --mode check - cabal-gild --mode=check $(ls *.cabal) + cabal-gild --mode=check --input=$(ls *.cabal) check: check-format test format: git ls-files -z '*.hs' | xargs -P 12 -0 fourmolu --mode inplace - cabal-gild --mode=format $(ls *.cabal) + cabal-gild --io=$(ls *.cabal) fix: format