We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0c67ec commit 6d4063fCopy full SHA for 6d4063f
1 file changed
packages/contentstack-audit/src/modules/assets.ts
@@ -237,6 +237,10 @@ export default class Assets extends BaseClass {
237
const logConfig = configHandler.get('log') || {};
238
const showConsoleLogs = logConfig.showConsoleLogs ?? false;
239
240
+ if (!this.resolvedBasePaths.length) {
241
+ this.resolvedBasePaths = this.resolveAssetBasePaths();
242
+ }
243
+
244
for (const { path: spacePath, spaceId } of this.resolvedBasePaths) {
245
log.debug(`Processing asset path: ${spacePath} (spaceId=${spaceId ?? 'none'})`, this.config.auditContext);
246
0 commit comments