diff options
| author | 2018-04-17 10:41:11 -0700 | |
|---|---|---|
| committer | 2018-04-17 10:42:18 -0700 | |
| commit | edd1ae0817af0a43ffead3c228645366cdb6e41c (patch) | |
| tree | 1150a7a61b8a4a45f6b13b42b5a9e40c985c46f7 /java/java.go | |
| parent | 423245dcc35a8f5dab440ab8945570c2da855738 (diff) | |
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
Diffstat (limited to 'java/java.go')
0 files changed, 0 insertions, 0 deletions