summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--ci/action.nim6
1 files changed, 2 insertions, 4 deletions
diff --git a/ci/action.nim b/ci/action.nim
index 8c3260096..5d3a50fda 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()