Skip to content

Commit 7bdc004

Browse files
authored
Fix treehash.yml (#1202)
1 parent 0c09eb2 commit 7bdc004

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/treehash.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ jobs:
3636
using GAP_pkg_juliainterface_jll
3737
jll = GAP_pkg_juliainterface_jll.find_artifact_dir()
3838
jll_hash = GitTools.tree_hash(joinpath(jll, "src"))
39-
bundled = joinpath(@__DIR__, "..", "pkg", "JuliaInterface")
39+
bundled = joinpath(@__DIR__, "pkg", "JuliaInterface")
4040
bundled_hash = GitTools.tree_hash(joinpath(bundled, "src"))
41-
jll_hash == bundled_hash || error("tree hash is $src_hash, but JLL uses $jll_hash")
41+
jll_hash == bundled_hash || error("tree hash is $bundled_hash, but JLL uses $jll_hash")
4242
'
4343
# next verify that GAP.jl still runs when forced to rebuild juliainterface;
4444
# as a side effect this also reduce code coverage fluctuation when

0 commit comments

Comments
 (0)