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.
This commit is contained in:
Alex Richardson 2022-05-25 21:33:17 +00:00 committed by Simon McVittie
parent 17db7f268a
commit 295912045e
2 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# Copyright © 2015-2016 Collabora Ltd.
# Copyright © 2020 Ralf Habacker <ralf.habacker@freenet.de>

View file

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# Copyright © 2015-2016 Collabora Ltd.
#