This commit updates the script shebang from /bin/bash to /usr/bin/env
bash, thereby improving the portability of the scripts across different
Unix-like systems. For example, NixOS and FreeBSD do not place the bash
shell in the /bin directory.
Signed-off-by: Michael Adler <
michae...@siemens.com>
---
scripts/cppcheck.sh | 2 +-
scripts/make_release | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/scripts/cppcheck.sh b/scripts/cppcheck.sh
index af5f337..2b5560f 100755
--- a/scripts/cppcheck.sh
+++ b/scripts/cppcheck.sh
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
#
# EFI Boot Guard
#
diff --git a/scripts/make_release b/scripts/make_release
index 38a772f..ff19f95 100755
--- a/scripts/make_release
+++ b/scripts/make_release
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
#
# EFI Boot Guard
#
--
2.42.0