From 1194591fa1704822a77a6dc735a1ddd0be9728ee Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Fri, 22 Jul 2022 11:30:53 +1000 Subject: [PATCH] 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. --- contrib/test.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/test.sh b/contrib/test.sh index 7933a53..9dcea78 100755 --- a/contrib/test.sh +++ b/contrib/test.sh @@ -1,6 +1,6 @@ -#!/bin/sh -ex +#!/bin/sh -set -e +set -ex # TODO: Add "alloc" once we bump MSRV to past 1.29 FEATURES="bitcoin_hashes global-context lowmemory rand recovery serde std"