diff --git a/src/utils/manifestCache.ts b/src/utils/manifestCache.ts index 724e04c..798e8a7 100644 --- a/src/utils/manifestCache.ts +++ b/src/utils/manifestCache.ts @@ -80,7 +80,7 @@ export class ManifestCache { const parsedCache = this.readCacheFromFile() - if (eq(parsedCache, orderdCache) || isEmptyObject(orderdCache)) { + if (!isEmptyObject(parsedCache) && eq(parsedCache, orderdCache)) { return }