Skip to content

Commit

Permalink
check-cabal-files.sh: exclude asserts.cabal
Browse files Browse the repository at this point in the history
This suddenly started failing on CI even though this file has been there for
several weeks already 🤔
  • Loading branch information
amesgen committed Sep 28, 2023
1 parent 2109940 commit d9c6492
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/ci/check-cabal-files.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

for x in $(find . -name '*.cabal' | grep -v dist-newstyle | cut -c 3-); do
for x in $(find . -name '*.cabal' | grep -vE 'dist-newstyle|asserts\.cabal' | cut -c 3-); do
(
d=$(dirname $x)
echo "== $d =="
Expand Down

0 comments on commit d9c6492

Please sign in to comment.