diff options
author | vigress8 <150687949+vigress8@users.noreply.github.com> | 2024-06-24 23:28:36 +0400 |
---|---|---|
committer | Jade Lovelace <lix@jade.fyi> | 2024-06-24 14:00:43 -0700 |
commit | c7af89c79771a6d4eb84baa6cd9b7551b3a84a4b (patch) | |
tree | e73517bef7dbbe45e14564d955ee7d25e88c9f3c /maintainers | |
parent | d86009bd76ae85e56e1d26aab26d38f90ecb6439 (diff) |
change shebangs of all .sh scripts to bash
On operating systems where /bin/sh is not Bash, some scripts are invalid
because of bashisms, and building Lix fails with errors like this:
`render-manpage.sh: 3: set: Illegal option -o pipefail`
This modifies all scripts that use a `/bin/sh` shebang to `/usr/bin/env
bash`, including currently POSIX-compliant ones, to prevent any future
confusion.
Change-Id: Ia074cc6db42d40fc59a63726f6194ea0149ea5e0
Diffstat (limited to 'maintainers')
-rwxr-xr-x | maintainers/buildtime_report.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/maintainers/buildtime_report.sh b/maintainers/buildtime_report.sh index 54ce75eb5..3f17ef5ce 100755 --- a/maintainers/buildtime_report.sh +++ b/maintainers/buildtime_report.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/usr/bin/env bash # Generates a report of build time based on a meson build using -ftime-trace in # Clang. |