diff --git a/packages/shorebird_cli/lib/src/commands/patch/patch_aar_command.dart b/packages/shorebird_cli/lib/src/commands/patch/patch_aar_command.dart index eb792da1..b3342c6d 100644 --- a/packages/shorebird_cli/lib/src/commands/patch/patch_aar_command.dart +++ b/packages/shorebird_cli/lib/src/commands/patch/patch_aar_command.dart @@ -283,7 +283,7 @@ ${summary.join('\n')} patchArtifactBundles: patchArtifactBundles, metadata: CreatePatchMetadata( releasePlatform: releasePlatform, - usedIgnoreAssetChangesFlag: allowNativeDiffs, + usedIgnoreAssetChangesFlag: allowAssetDiffs, hasAssetChanges: diffStatus.hasAssetChanges, usedIgnoreNativeChangesFlag: allowNativeDiffs, hasNativeChanges: diffStatus.hasNativeChanges, diff --git a/packages/shorebird_cli/lib/src/commands/patch/patch_android_command.dart b/packages/shorebird_cli/lib/src/commands/patch/patch_android_command.dart index a16ea9c0..d64bd578 100644 --- a/packages/shorebird_cli/lib/src/commands/patch/patch_android_command.dart +++ b/packages/shorebird_cli/lib/src/commands/patch/patch_android_command.dart @@ -383,7 +383,7 @@ ${summary.join('\n')} releaseId: release.id, metadata: CreatePatchMetadata( releasePlatform: releasePlatform, - usedIgnoreAssetChangesFlag: allowNativeDiffs, + usedIgnoreAssetChangesFlag: allowAssetDiffs, hasAssetChanges: diffStatus.hasAssetChanges, usedIgnoreNativeChangesFlag: allowNativeDiffs, hasNativeChanges: diffStatus.hasNativeChanges, diff --git a/packages/shorebird_cli/lib/src/commands/patch/patch_ios_command.dart b/packages/shorebird_cli/lib/src/commands/patch/patch_ios_command.dart index 34bd53a9..7f1a5f0d 100644 --- a/packages/shorebird_cli/lib/src/commands/patch/patch_ios_command.dart +++ b/packages/shorebird_cli/lib/src/commands/patch/patch_ios_command.dart @@ -405,7 +405,7 @@ ${summary.join('\n')} }, metadata: CreatePatchMetadata( releasePlatform: releasePlatform, - usedIgnoreAssetChangesFlag: allowNativeDiffs, + usedIgnoreAssetChangesFlag: allowAssetDiffs, hasAssetChanges: diffStatus.hasAssetChanges, usedIgnoreNativeChangesFlag: allowNativeDiffs, hasNativeChanges: diffStatus.hasNativeChanges, diff --git a/packages/shorebird_cli/lib/src/commands/patch/patch_ios_framework_command.dart b/packages/shorebird_cli/lib/src/commands/patch/patch_ios_framework_command.dart index cc54ac89..6348292a 100644 --- a/packages/shorebird_cli/lib/src/commands/patch/patch_ios_framework_command.dart +++ b/packages/shorebird_cli/lib/src/commands/patch/patch_ios_framework_command.dart @@ -341,7 +341,7 @@ ${summary.join('\n')} }, metadata: CreatePatchMetadata( releasePlatform: releasePlatform, - usedIgnoreAssetChangesFlag: allowNativeDiffs, + usedIgnoreAssetChangesFlag: allowAssetDiffs, hasAssetChanges: diffStatus.hasAssetChanges, usedIgnoreNativeChangesFlag: allowNativeDiffs, hasNativeChanges: diffStatus.hasNativeChanges,