mirror of
https://github.com/gorhill/uBlock.git
synced 2025-04-08 01:02:01 +08:00
[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:
parent
fd481a37bf
commit
27a72b8eef
@ -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,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user