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.
This commit is contained in:
Will Fife 2014-10-06 09:58:23 -07:00
parent 6eeb922d11
commit 749b375feb
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
#
# This script builds the application from source.
set -e