mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-30 07:17:56 +00:00
bcebd39e47
* [ci] benchmarks: suppress wrong exit code The script uses '!' to prevent set -e failures, however a $? of `0` becomes exit code 1 if it is the last command ran. This `true` makes sure that $? is 0 when we reach the end, instead of carrying over a failure which would otherwise cause the whole CI job to abort. * add explanation comment