Skip to content

Commit 50946af

Browse files
author
naman-contentstack
committed
[DX-2277], removed the flag condition
1 parent b70b75d commit 50946af

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
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)