[FIX][SCRIPTS] Use correct bash shebang

The `/bin/bash` path is not assured by POSIX, however the path
`/usr/bin/env bash` should work, if bash is in the PATH.
This commit is contained in:
Bruno BELANYI 2019-10-29 13:11:18 +01:00
parent ae5d77e52d
commit 66a55063bb

View file

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# Inspired by <https://github.com/cdown/btmenu>