Skip to content

Commit

Permalink
Fix cabal check warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
neilmayhew committed Nov 21, 2024
1 parent e06102f commit c03fcc8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cardano-api-gen/cardano-api-gen.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ license-files:
NOTICE

build-type: Simple
extra-source-files:
extra-doc-files:
CHANGELOG.md
README.md

Expand Down
2 changes: 1 addition & 1 deletion scripts/ci/check-cabal-files.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ for cabal_file in $(git ls-files "*.cabal")
do
cd "$(dirname "$cabal_file")" || { echo "Cannot cd"; exit 1; }
echo "$(pwd)> cabal-check"
cabal check
cabal check --ignore=missing-upper-bounds
cd - || { echo "Cannot cd back"; exit 1; }
done

0 comments on commit c03fcc8

Please sign in to comment.