diff options
author | Steph Enders <steph@senders.io> | 2024-03-11 14:00:08 -0400 |
---|---|---|
committer | Steph Enders <steph@senders.io> | 2024-03-11 14:00:08 -0400 |
commit | d72758f1101bd6b3abd0eeea52df7938fe9a378d (patch) | |
tree | a5c1d5f32bd5534c4e0464855cfb25bb912cad83 | |
parent | a6c2523aed55f01ce8390272619cfee0db7cc3a5 (diff) |
set env to bash - wasn't using standard shmain
I had it set to sh but I think sh is just alias'd to bash on this
machine! oops!
-rwxr-xr-x | gmi2html.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gmi2html.sh b/gmi2html.sh index f9ea89c..d402268 100755 --- a/gmi2html.sh +++ b/gmi2html.sh @@ -1,4 +1,4 @@ -#!/usr/bin/env sh +#!/usr/bin/env bash function err { echo "$@" >&2 |