[mv3] Hopefully this fixes Edge submission issue

Submission to Edge Addons store fails with:

----
The following checks failed:
Package acceptance validation error:
Manifest file reference 'urlhaus.full' does not exist in the zip archive.
(Note: File locations are case-sensitive)
Package acceptance validation error:
Manifest file reference 'openphish.domains' does not exist in the zip archive.
(Note: File locations are case-sensitive)
----

Guessing the use of period in ruleset file path is causing the
issue.
This commit is contained in:
Raymond Hill 2024-12-23 09:57:57 -05:00
parent fd481a37bf
commit 27a72b8eef
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -1287,7 +1287,7 @@ async function main() {
// Handpicked rulesets from abroad // Handpicked rulesets from abroad
await rulesetFromURLs({ await rulesetFromURLs({
id: 'urlhaus.full', id: 'urlhaus-full',
name: 'Malicious URL Blocklist', name: 'Malicious URL Blocklist',
group: 'malware', group: 'malware',
enabled: true, enabled: true,
@ -1299,7 +1299,7 @@ async function main() {
homeURL: 'https://gitlab.com/malware-filter/urlhaus-filter', homeURL: 'https://gitlab.com/malware-filter/urlhaus-filter',
}); });
await rulesetFromURLs({ await rulesetFromURLs({
id: 'openphish.domains', id: 'openphish-domains',
name: 'OpenPhish Domain Blocklist', name: 'OpenPhish Domain Blocklist',
group: 'malware', group: 'malware',
enabled: true, enabled: true,