From 749b375feb2cde643f0504e592a9786c237be3e1 Mon Sep 17 00:00:00 2001 From: Will Fife Date: Mon, 6 Oct 2014 09:58:23 -0700 Subject: [PATCH] Altered the /bin/bash line to use the /usr/bin/env command to acquire the location of bash from the environment. This should work on Linux/OS X/FreeBSD. FreeBSD puts bash in /usr/local/bin instead of /bin/ so builds don't work without modification there. --- scripts/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build.sh b/scripts/build.sh index c8c3d31eb..cb4a8e94f 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # # This script builds the application from source. set -e