Skip to content

Commit

Permalink
Fix check for cabal setup_dep
Browse files Browse the repository at this point in the history
  • Loading branch information
avdv committed Dec 5, 2024
1 parent 1742842 commit 0fe651a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rules_haskell_tests/non_module_deps_2.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def repositories(*, bzlmod): # @unused
"unliftio-core": ["@ghcide//:Cabal"],
"yaml": ["@ghcide//:Cabal"],
}.items()
if [d for d in deps if d != "@Cabal//:Cabal"] or not GHC_VERSION or not is_at_least("9.6", GHC_VERSION)
if [d for d in deps if d != "@ghcide//:Cabal"] or not GHC_VERSION or not is_at_least("9.6", GHC_VERSION)
},
stack_snapshot_json = ("//:ghcide-snapshot{}.json".format(
"_" + str(GHC_VERSION) if GHC_VERSION else "",
Expand Down

0 comments on commit 0fe651a

Please sign in to comment.