()
| 73 | * Get the path to known_marketplaces.json in the zip cache. |
| 74 | */ |
| 75 | export function getZipCacheKnownMarketplacesPath(): string { |
| 76 | const cachePath = getPluginZipCachePath() |
| 77 | if (!cachePath) { |
| 78 | throw new Error('Plugin zip cache is not enabled') |
| 79 | } |
| 80 | return join(cachePath, 'known_marketplaces.json') |
| 81 | } |
| 82 | |
| 83 | /** |
| 84 | * Get the path to installed_plugins.json in the zip cache. |
no test coverage detected