1

misc: use /usr/bin/env in scripts

This patch continues the work to support NixOS and others non-FHS
distributions by replacing instances of `/bin/bash` with
`/usr/bin/env bash`, which works correctly in more systems than the
former.

Signed-off-by: Luis Holanda <luiscmholanda@gmail.com>
This commit is contained in:
Luis Holanda
2022-07-27 17:33:53 -03:00
committed by Motiejus Jakštys
parent c4125cf13b
commit 8b5c41e409
7 changed files with 8 additions and 8 deletions

View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -euo pipefail
indent() { sed 's/^/ /'; }