Merge "Fix error message to still be an error." into main am: dbd4a25cf7 am: 9f98477e8f am: 8dcd17afb8 am: de74892eae

Original change: https://android-review.googlesource.com/c/platform/build/soong/+/2775983

Change-Id: I7c97ea19b6f91f68bdd645afb8c49de5eb145e87
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Dan Albert 2023-10-06 20:55:27 +00:00 committed by Automerger Merge Worker
commit 98a01ec7e4

View file

@ -61,7 +61,7 @@ var (
// because we don't want to spam the build output with "nothing
// changed" messages, so redirect output message to $out, and if
// changes were detected print the output and fail.
Command: "$stgdiff $args --stg $in -o $out || (cat $out && false; echo 'Run $$ANDROID_BUILD_TOP/development/tools/ndk/update_ndk_abi.sh to update the ABI dumps.')",
Command: "$stgdiff $args --stg $in -o $out || (cat $out && echo 'Run $$ANDROID_BUILD_TOP/development/tools/ndk/update_ndk_abi.sh to update the ABI dumps.' && false)",
CommandDeps: []string{"$stgdiff"},
}, "args")