mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-01-31 10:41:08 +00:00
It contains a large `bash -c` string, which is hard to parse. So pull out components: * CI_EXEC is only called with absolute folders as args, so the `cd` is not needed in CI_EXEC. It is only needed to specify the working dir of running the tests in 03_test_script.sh, so move it there. * The PATH modification is only needed after commit 4756114e505cff8848fb6344ef9a48d8822066c1 to check that depends does work properly, even when the PATH contains a space. * This allows to also drop the `bash -c` and use the proper and safer "$@" to forward args without the risk of word splitting.