summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Gamari <ben@well-typed.com>2020-10-27 09:52:36 -0400
committerBen Gamari <ben@well-typed.com>2020-10-27 09:52:36 -0400
commit22e47f511d5e598d5d20fa19b377cf93a42b8a44 (patch)
treefc8c5309cfa8e5a67c928fe8524b0360decede88
parent730bb59086ad1036143983c3fba61bd851bebc03 (diff)
downloadhaskell-wip/hadrian-metric-baseline.tar.gz
hadrian: Don't quote metric baseline argumentwip/hadrian-metric-baseline
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)