chore(shorebird_cli): update patch diff warning wording (#1413)

This commit is contained in:
Bryan Oltman
2023-10-18 12:25:01 -04:00
committed by GitHub
parent 4e3cdf34e2
commit 718e4abe56
2 changed files with 4 additions and 4 deletions
@@ -91,7 +91,7 @@ class PatchDiffChecker {
if (archiveDiffer.containsPotentiallyBreakingNativeDiffs(contentDiffs)) {
logger
..warn(
'''The release artifact contains native changes, which cannot be applied with a patch.''',
'''Your app contains native changes, which cannot be applied with a patch.''',
)
..info(
yellow.wrap(
@@ -118,7 +118,7 @@ If you don't know why you're seeing this error, visit our troublshooting page at
if (archiveDiffer.containsPotentiallyBreakingAssetDiffs(contentDiffs)) {
logger
..warn(
'''The release artifact contains asset changes, which will not be included in the patch.''',
'''Your app contains asset changes, which will not be included in the patch.''',
)
..info(
yellow.wrap(
@@ -148,7 +148,7 @@ void main() {
verify(
() => logger.warn(
'''The release artifact contains native changes, which cannot be applied with a patch.''',
'''Your app contains native changes, which cannot be applied with a patch.''',
),
).called(1);
verify(
@@ -249,7 +249,7 @@ void main() {
verify(
() => logger.warn(
'''The release artifact contains asset changes, which will not be included in the patch.''',
'''Your app contains asset changes, which will not be included in the patch.''',
),
).called(1);
verify(