From 22a17a97b65b7e9c23ead3f09faba8dce30bcebc Mon Sep 17 00:00:00 2001 From: Eric Seidel Date: Thu, 28 Mar 2024 12:56:55 -0700 Subject: [PATCH] fix: typo in recording patch metadata --- .../shorebird_cli/lib/src/commands/patch/patch_aar_command.dart | 2 +- .../lib/src/commands/patch/patch_android_command.dart | 2 +- .../shorebird_cli/lib/src/commands/patch/patch_ios_command.dart | 2 +- .../lib/src/commands/patch/patch_ios_framework_command.dart | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) 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,