Skip to content

Commit 6a4fb94

Browse files
committed
Fix check for cabal setup_dep
1 parent fe1aa99 commit 6a4fb94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rules_haskell_tests/non_module_deps_2.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def repositories(*, bzlmod): # @unused
9191
"unliftio-core": ["@ghcide//:Cabal"],
9292
"yaml": ["@ghcide//:Cabal"],
9393
}.items()
94-
if [d for d in deps if d != "@Cabal//:Cabal"] or not GHC_VERSION or not is_at_least("9.6", GHC_VERSION)
94+
if [d for d in deps if d != "@ghcide//:Cabal"] or not GHC_VERSION or not is_at_least("9.6", GHC_VERSION)
9595
},
9696
stack_snapshot_json = ("//:ghcide-snapshot{}.json".format(
9797
"_" + str(GHC_VERSION) if GHC_VERSION else "",

0 commit comments

Comments
 (0)