From 8b64522ae3c3d66ef046b52e0cd6fc7895469501 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Giraudeau Date: Wed, 22 Nov 2017 09:22:21 +0100 Subject: [PATCH] Find bash from env So that custom-script-shim works on distros where bash is not in /bin --- misc/custom-script-shim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/custom-script-shim b/misc/custom-script-shim index c448b51..697f724 100755 --- a/misc/custom-script-shim +++ b/misc/custom-script-shim @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash set -euo pipefail readonly SCRIPT_DIR=$(dirname "$0")