Replace #!/bin/bash shebangs with #!/usr/bin/env bash

For portability. E.g. /bin/bash doesn't exist on NixOS.
This commit is contained in:
Bjørn Forsman
2025-09-24 15:02:44 +02:00
parent 4fc06b90df
commit cccce3bf23
3 changed files with 3 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
## Copyright (c) 2013, adrelanos at riseup dot net ## Copyright (c) 2013, adrelanos at riseup dot net
## All rights reserved. ## All rights reserved.

View File

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

View File

@@ -1,4 +1,4 @@
#! /bin/bash #!/usr/bin/env bash
# testframe.sh DIR # testframe.sh DIR
# bare-bones testing framework. # bare-bones testing framework.
# run the test suites in the given DIR; # run the test suites in the given DIR;