Do not throw exception in all cases

This commit is contained in:
Sergey Dolin 2023-02-01 13:09:54 +01:00
parent b179378e1e
commit db0ba7321f
2 changed files with 13 additions and 6 deletions

View file

@ -87,7 +87,7 @@ export async function isCacheEnabled() {
const packageManager = getCurrentPackageManager();
const packageManagerInfo = await getPackageManagerInfo(packageManager);
const cachePaths = findDependencyFile(packageManagerInfo);
const cachePaths = findDependencyFile(packageManagerInfo, false);
return cachePaths.length > 0;
return Boolean(cachePaths);
}