We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1b5b94 commit 3c6914dCopy full SHA for 3c6914d
packages/contentstack-import/src/import/modules/marketplace-apps.ts
@@ -238,7 +238,7 @@ export default class ImportMarketplaceApps {
238
if (canCreatePrivateApp) {
239
log(this.importConfig, 'Starting developer hub private apps re-creation', 'success');
240
for (let app of privateApps) {
241
- if (this.importConfig.skipPrivateAppRecreationIfExist && (await this.isPrivateAppExistInDeveloperHub(app))) {
+ if (await this.isPrivateAppExistInDeveloperHub(app)) {
242
// NOTE Found app already exist in the same org
243
this.appUidMapping[app.uid] = app.uid;
244
cliux.print(`App '${app.manifest.name}' already exist. skipping app recreation.!`, { color: 'yellow' });
0 commit comments