Skip to content

Commit

Permalink
ci debugging 4
Browse files Browse the repository at this point in the history
  • Loading branch information
joshday committed Feb 25, 2024
1 parent 93dc10a commit f971415
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ depot = DepotDelivery.build(joinpath(@__DIR__, "TestProject"))
# debugging artifacts in CI
function print_file_tree(path, depth=0)
if isfile(path)
printstyled(" " ^ depth, basename(path), '\n', color=:light_blue)
printstyled(stdout, " " ^ depth, basename(path), '\n', color=:light_blue)
else
println(" " ^ depth, basename(path), "/")
println(stdout, " " ^ depth, basename(path), "/")
for f in readdir(path)
print_file_tree(joinpath(path, f), depth + 1)
end
Expand Down

0 comments on commit f971415

Please sign in to comment.