Files
build_soong/cc
Dan Willemsen edd1ae0817 Fix ABI diff reporting with dist
When we're doing ABI diffing, we run something like:

  (run-abi-diff) || (echo && exit 1)

When `dist` is added, we attempt to copy out the result:

  (run-abi-diff) || (echo) && (copy && exit 1)

But this always fails, since it will always run exit 1. We really want
the parenthesis around the entire second section. This change switches
it to:

  (run-abi-diff) || (echo && (copy) && exit 1)

This matches the behavior before Iae25374fe937a0cbe8a8ddf9e23c3bc1f62bbb2a

Test: treehugger on P
Change-Id: Ic39da4d4630ee950b811ec7854d55d65c52f8661
2018-04-17 10:42:18 -07:00
..
2018-04-03 16:02:29 -07:00
2018-04-17 10:42:18 -07:00
2017-10-19 22:39:32 +09:00
2018-01-02 18:23:43 -08:00
2018-02-22 16:48:35 -08:00
2017-09-18 23:33:25 -07:00
2017-11-17 11:22:04 -08:00
2018-04-10 16:26:10 -07:00
2018-04-12 14:37:35 -07:00
2018-04-12 14:37:35 -07:00
2016-08-01 14:36:22 -07:00
2018-04-10 16:26:10 -07:00
2018-04-05 17:48:32 -07:00