summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Gamari <ben@well-typed.com>2020-10-27 09:52:36 -0400
committerMarge Bot <ben+marge-bot@smart-cactus.org>2020-10-28 21:11:39 -0400
commit60322f930c544fabd7e68231db26e3a1fb8ed037 (patch)
treeb1ab7dcdd7f47c6485231cd8743bcb1381244813
parent28f98b01d055c8027f9495b1669bf875b3e42168 (diff)
downloadhaskell-60322f930c544fabd7e68231db26e3a1fb8ed037.tar.gz
hadrian: Don't quote metric baseline argument
Previously this was quoted inappropriately.
-rw-r--r--hadrian/src/Settings/Builders/RunTest.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/hadrian/src/Settings/Builders/RunTest.hs b/hadrian/src/Settings/Builders/RunTest.hs
index 3c42284152..d2e98282a2 100644
--- a/hadrian/src/Settings/Builders/RunTest.hs
+++ b/hadrian/src/Settings/Builders/RunTest.hs
@@ -140,7 +140,7 @@ runTestBuilderArgs = builder RunTest ? do
, arg "--config", arg $ "stats_files_dir=" ++ statsFilesDir
, arg $ "--threads=" ++ show threads
, case perfBaseline of
- Just commit | not (null commit) -> arg ("--perf-baseline=" ++ show commit)
+ Just commit | not (null commit) -> arg ("--perf-baseline=" ++ commit)
_ -> mempty
, emitWhenSet testEnv $ \env -> arg ("--test-env=" ++ env)
, emitWhenSet testMetricsFile $ \file -> arg ("--metrics-file=" ++ file)