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

Simply because it is subjectively more typical and easier to see; use
`set -ex` instead of `-ex` on the shebang line.
This commit is contained in:
Tobin C. Harding 2022-07-22 11:30:53 +10:00
parent 576e10b23e
commit 1194591fa1
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
#!/bin/sh -ex #!/bin/sh
set -e set -ex
# TODO: Add "alloc" once we bump MSRV to past 1.29 # TODO: Add "alloc" once we bump MSRV to past 1.29
FEATURES="bitcoin_hashes global-context lowmemory rand recovery serde std" FEATURES="bitcoin_hashes global-context lowmemory rand recovery serde std"