From: Alex Richardson Date: Wed, 25 May 2022 21:33:17 +0000 (+0000) Subject: tools/ci-{build,install}.sh: Use a portable interpreter argument X-Git-Tag: dbus-1.15.0~14^2~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=295912045e12b9ed436b3eb10e3147f22d79199b;p=thirdparty%2Fdbus.git tools/ci-{build,install}.sh: Use a portable interpreter argument FreeBSD has bash installed as /usr/local/bin/bash, so hardcoding /bin/bash does not work. Instead use the portable replacement using env which will find bash in $PATH. --- diff --git a/tools/ci-build.sh b/tools/ci-build.sh index 6e907deb1..a71214db1 100755 --- a/tools/ci-build.sh +++ b/tools/ci-build.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Copyright © 2015-2016 Collabora Ltd. # Copyright © 2020 Ralf Habacker diff --git a/tools/ci-install.sh b/tools/ci-install.sh index ee9d3499e..790e7a931 100755 --- a/tools/ci-install.sh +++ b/tools/ci-install.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Copyright © 2015-2016 Collabora Ltd. #