Skip to content

Commit

Permalink
[mv3] Hopefully this fixes Edge submission issue
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
gorhill committed Dec 23, 2024
1 parent fd481a3 commit 27a72b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions platform/mv3/make-rulesets.js
Original file line number Diff line number Diff line change
Expand Up @@ -1287,7 +1287,7 @@ async function main() {

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

0 comments on commit 27a72b8

Please sign in to comment.