Skip to content

Commit 8b86693

Browse files
results.json: Fix repo paths so links to github work (#59090)
1 parent 18976d8 commit 8b86693

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

test/buildkitetestjson.jl

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,10 +99,9 @@ function generalize_file_paths(path::AbstractString)
9999
string(bindir_dir, pathsep) => ""
100100
)
101101
@static if Sys.iswindows()
102-
return replace(path, "\\" => "/")
103-
else
104-
return path
102+
path = replace(path, "\\" => "/")
105103
end
104+
return replace(path, "share/julia/" => "")
106105
end
107106
end
108107

0 commit comments

Comments
 (0)