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:
parent
4c4846f82a
commit
58ede47ef1
|
@ -1,4 +1,6 @@
|
||||||
#!/bin/sh -ex
|
#!/bin/sh
|
||||||
|
|
||||||
|
set -ex
|
||||||
|
|
||||||
FEATURES="base64 bitcoinconsensus serde rand secp-recovery"
|
FEATURES="base64 bitcoinconsensus serde rand secp-recovery"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue