Skip to content

Commit af8d60e

Browse files
committed
attempt to debug PkgEval failure
1 parent 2ba8618 commit af8d60e

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "RegressionTests"
22
uuid = "2cca1867-674a-4323-b559-fc77c0bbdb31"
33
authors = ["Lilith Orion Hafner <[email protected]> and contributors"]
4-
version = "0.0.10"
4+
version = "0.0.11"
55

66
[deps]
77
Compat = "34da2185-b29b-5c13-b0c7-acf172513d20"

src/RegressionTests.jl

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,12 @@ function try_runbenchmarks(;
147147
new_project = tempname()
148148
cp(project, new_project)
149149
cd(new_project) do
150-
run(`git config user.name "RegressionTests.jl"`) # This is local to the temp project
150+
try
151+
run(`git config user.name "RegressionTests.jl"`) # This is local to the temp project
152+
catch
153+
println(ENV)
154+
rethrow()
155+
end
151156
run(`git config user.email "[email protected]"`)
152157
run(`git checkout -b $dev_branch`, devnull, devnull, devnull)
153158
run(`git add .`)

0 commit comments

Comments
 (0)