diff --git a/ci/action.nim b/ci/action.nim index 8c32600961311..5d3a50fda24d9 100644 --- a/ci/action.nim +++ b/ci/action.nim @@ -9,9 +9,7 @@ proc main() = doAssert exitCode == 0, output - var start = rfind(output, "Hint: gc") - if start < 0: - start = rfind(output, "Hint: mm") + let start = rfind(output, "Hint: mm") doAssert parseUntil(output, msg, "; proj", start) > 0, output let (commitHash, _) = execCmdEx("""git log --format="%H" -n 1""") @@ -25,4 +23,4 @@ The lines below are statistics of the Nim compiler built from {commitHash} writeFile "ci/nimcache/results.txt", welcomeMessage when isMainModule: - main() \ No newline at end of file + main()