My CI pipeline is alive, and the lua linter found a synta error in a line that will almost never be called so it was able to slip under the radar. Cool.
Skyweave CI Rituals / Rite of Static Scrutiny (Luacheck) (push) Failing after 6s

This commit is contained in:
wes
2025-06-12 07:41:44 -04:00
parent c6ce231ce7
commit d36483901f
+1 -1
View File
@@ -25,7 +25,7 @@ local function emergency_error(message, status_code)
print(json_for_emergency.encode({ errCode = -999, errMsg = "Framework Panic: " .. message })) print(json_for_emergency.encode({ errCode = -999, errMsg = "Framework Panic: " .. message }))
else else
-- Fallback to a very basic JSON-like string if no JSON encoder is available -- Fallback to a very basic JSON-like string if no JSON encoder is available
print('{"errCode": -999, "errMsg": "Framework Panic: ' .. message:gsub('[\\"]', '\%1') .. '"}') print('{"errCode": -999, "errMsg": "Framework Panic: ' .. message:gsub('([\\"])', '\\%1') .. '"}')
end end
end end