ci: Use set -ex instead of /bin/sh -ex

Setting `-ex` in the shebang makes it a little hard to see since folks
are used to glancing up and looking for `set -ex`. Both styles achieve
the same result, so this does not change the logic of the script.
This commit is contained in:
Tobin C. Harding 2022-07-22 08:06:51 +10:00
parent 4c4846f82a
commit 58ede47ef1
1 changed files with 3 additions and 1 deletions

View File

@ -1,4 +1,6 @@
#!/bin/sh -ex
#!/bin/sh
set -ex
FEATURES="base64 bitcoinconsensus serde rand secp-recovery"