From e5844875396dd7ebfcb23a5049cb145c53e428a9 Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Tue, 2 Nov 2021 07:56:05 -0700 Subject: [PATCH] standardize on '/usr/bin/env bash' shebang for CI scripts This is slightly more portable (e.g. on FreeBSD Bash does not live at /bin/bash). The previous shebang was fine on all the operating systems we currently support, but this adds robustness as we expand CI coverage. --- ci/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/build.sh b/ci/build.sh index affffa562..e5fa636ed 100755 --- a/ci/build.sh +++ b/ci/build.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash set -x set -e -- 2.40.0