From adbee8a7f7499ece26a24472460a0348cf1f6de4 Mon Sep 17 00:00:00 2001 From: Jerome Haltom Date: Tue, 29 Oct 2019 15:45:13 -0500 Subject: [PATCH] Only runs on BASH If /bin/sh isn't a link to /bin/bash on your system, bindinate returns the following error: ``` /usr/local/bin/bindinate: 96: function: not found /usr/local/bin/bindinate: 107: Syntax error: "}" unexpected ``` So, it's probably the case that the script should be referring to bash. --- bindinate/bindinate.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindinate/bindinate.in b/bindinate/bindinate.in index bb447d3..fb57ae2 100755 --- a/bindinate/bindinate.in +++ b/bindinate/bindinate.in @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash usage() { cat <