Skip to content

Commit

Permalink
FIX: missing string concat
Browse files Browse the repository at this point in the history
  • Loading branch information
Paliak committed Jul 2, 2024
1 parent 3fe71e0 commit f959c17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/GenerateBuilds.lua
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ for testBuild in fetchBuilds("../spec/TestBuilds") do
print("[+] Computing " .. filePath)
loadBuildFromXML(testBuild.xml)
local calcDuration = startTime - GetTime()
print("[-] Computed " .. filePath " in " .. calcDuration .. "ms")
print("[-] Computed " .. filePath .. " in " .. calcDuration .. "ms")

-- Save the computed build xml. Include full minuion and player outputs.

Check warning on line 80 in spec/GenerateBuilds.lua

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (minuion)
local buildHnd = io.open(filePath .. ".build", "w+")
Expand Down

0 comments on commit f959c17

Please sign in to comment.