Commit 1561e9fc authored by Stefan Tatschner's avatar Stefan Tatschner

Use /usr/bin/env bash shebang

On FreeBSD bash is installed in /usr/local/bin; this patch
alters the shebang to use /usr/bin/env bash instead, to ensure
that the shell scripts work on (particularly) the *BSDs as well.
parent f6e6c1f1
#!/bin/bash
#!/usr/bin/env bash
########################################################
# This is the main config file for letsencrypt.sh #
......
#!/bin/bash
#!/usr/bin/env bash
function deploy_challenge {
local DOMAIN="${1}" TOKEN_FILENAME="${2}" TOKEN_VALUE="${3}"
......
#!/bin/bash
#!/usr/bin/env bash
# Fail early
set -eu -o pipefail
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment