Clarify an error message in swf_assets:manifests task

It's not just that none of them were 200 OK, it's that they were all 404.
In the event that something returns not-200 and not-404, we immediately
abort, so we shouldn't get to this case unless they were all 404!
This commit is contained in:
Emi Matchu 2023-11-10 17:27:35 -08:00
parent dc22a458bf
commit 80bd229bc6

View file

@ -89,5 +89,5 @@ def infer_manifest_url(swf_url, internet)
end
# Otherwise, there's no valid manifest URL.
raise "none of the common manifest URL patterns returned HTTP 200"
raise "all of the common manifest URL patterns returned HTTP 404"
end