Change '/bin/bash' shebangs to '/usr/bin/env bash'

This improves portability across different unix-like operating systems
by using bash from the PATH, instead of bash from a hardcoded location.

Signed-off-by: Harry Callahan <hcallahan@lowrisc.org>
This commit is contained in:
Harry Callahan 2024-03-17 11:50:57 +00:00
parent 71a1fc6af4
commit db07ab174e
12 changed files with 12 additions and 12 deletions

View file

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -u
set -e