From d96917e65ca327047a037e41f966544df5973daa Mon Sep 17 00:00:00 2001 From: raj pandey Date: Tue, 31 Mar 2026 10:54:30 +0530 Subject: [PATCH] fix: Fixed the taxonomy mapper issue in content-type update --- .../contentstack-import/src/import/modules/content-types.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/contentstack-import/src/import/modules/content-types.ts b/packages/contentstack-import/src/import/modules/content-types.ts index 7872d49b..ada27cda 100644 --- a/packages/contentstack-import/src/import/modules/content-types.ts +++ b/packages/contentstack-import/src/import/modules/content-types.ts @@ -136,13 +136,13 @@ export default class ContentTypesImport extends BaseClass { this.pendingGFs = []; this.pendingExts = []; this.taxonomiesPath = path.join( - sanitizePath(importConfig.contentDir), + sanitizePath(importConfig.backupDir), PATH_CONSTANTS.MAPPER, PATH_CONSTANTS.MAPPER_MODULES.TAXONOMIES, PATH_CONSTANTS.FILES.SUCCESS, ); this.extPendingPath = path.join( - sanitizePath(importConfig.contentDir), + sanitizePath(importConfig.backupDir), PATH_CONSTANTS.MAPPER, PATH_CONSTANTS.MAPPER_MODULES.EXTENSIONS, PATH_CONSTANTS.FILES.PENDING_EXTENSIONS,