From ac4f194fcc30f6794a451884d1b675bd7beadb04 Mon Sep 17 00:00:00 2001 From: Abel Soares Siqueira Date: Fri, 24 May 2024 15:14:30 +0200 Subject: [PATCH] [DEBUG] Show temp dirs. Use HEAD --- test/runtests.jl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/runtests.jl b/test/runtests.jl index 01d00d5b..732a2a51 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -30,7 +30,9 @@ template_options = Dict( tmpdir1 = mktempdir() tmpdir2 = mktempdir() - COPIERTemplate.generate(tmpdir1; data = template_options, vcs_ref = "main") + @show tmpdir1 tmpdir2 + + COPIERTemplate.generate(tmpdir1; data = template_options, vcs_ref = "HEAD") bash_args = vcat([["-d"; "$k=$v"] for (k, v) in template_options]...) ignore(line) = startswith("_commit")(line) || startswith("_src_path")(line) template_path = joinpath(@__DIR__, "..")