Use more portable shebang for dev scripts

/bin/bash, while common, is not part of the unix standard, and does not
exist on some operating systems (such as NixOS). /usr/bin/env, on the
other hand, is standardized, and thus should exist on all systems.
This commit is contained in:
Wesley Aptekar-Cassels 2023-03-07 12:50:36 -05:00
parent 66ce298001
commit abb5dc857e
2 changed files with 2 additions and 2 deletions

2
bw-dev
View file

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

View file

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -e
# determine inital and target versions