Skip to content

Commit 3c6914d

Browse files
author
naman-contentstack
committed
[DX-2277], removed the flag condition
1 parent b1b5b94 commit 3c6914d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/contentstack-import/src/import/modules/marketplace-apps.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ export default class ImportMarketplaceApps {
238238
if (canCreatePrivateApp) {
239239
log(this.importConfig, 'Starting developer hub private apps re-creation', 'success');
240240
for (let app of privateApps) {
241-
if (this.importConfig.skipPrivateAppRecreationIfExist && (await this.isPrivateAppExistInDeveloperHub(app))) {
241+
if (await this.isPrivateAppExistInDeveloperHub(app)) {
242242
// NOTE Found app already exist in the same org
243243
this.appUidMapping[app.uid] = app.uid;
244244
cliux.print(`App '${app.manifest.name}' already exist. skipping app recreation.!`, { color: 'yellow' });

0 commit comments

Comments
 (0)