mirror of
https://github.com/Jeuners/ECC.git
synced 2026-09-09 15:02:30 +02:00
fix: harden install planning and sync tracked catalogs
This commit is contained in:
parent
03c4a90ffa
commit
e1bc08fa6e
19 changed files with 970 additions and 118 deletions
|
|
@ -276,6 +276,13 @@ function createInstallTargetAdapter(config) {
|
|||
input
|
||||
));
|
||||
},
|
||||
supportsModule(module, input = {}) {
|
||||
if (typeof config.supportsModule === 'function') {
|
||||
return config.supportsModule(module, input, adapter);
|
||||
}
|
||||
|
||||
return true;
|
||||
},
|
||||
validate(input = {}) {
|
||||
if (typeof config.validate === 'function') {
|
||||
return config.validate(input, adapter);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue