fix: portable shebangs

This commit is contained in:
Thales Macedo Garitezi 2021-12-28 08:21:51 -03:00
parent 1e567ac2b1
commit f93f90c9ea
No known key found for this signature in database
GPG Key ID: DD279F8152A9B6DD
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
DEBUG="${DEBUG:-0}"
if [ "$DEBUG" -eq 1 ]; then

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
## NOTE: those are defined separately from `common_defs.sh` because
## they require `common_functions.sh` to be sourced prior to sourcing

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# Echo to stderr on errors
echoerr() { echo "ERROR: $*" 1>&2; }