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:
parent
66ce298001
commit
abb5dc857e
2 changed files with 2 additions and 2 deletions
2
bw-dev
2
bw-dev
|
@ -1,4 +1,4 @@
|
|||
#!/bin/bash
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# exit on errors
|
||||
set -e
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue