From 00ebfaa9425dda6dc60ddc98b69050c28bb19ec6 Mon Sep 17 00:00:00 2001 From: Matthew Trisoline Date: Mon, 10 Feb 2014 09:51:51 -0500 Subject: [PATCH] Updated script/{web,background_job} to use #!/usr/bin/env bash rather than #!/bin/bash to allow for transparency between OS namely Linux and FreeBSD and for source installs of bash where path is not exported by default for /usr/local/{bin,sbin} --- script/background_jobs | 2 +- script/web | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/script/background_jobs b/script/background_jobs index 623e26a..06125c1 100755 --- a/script/background_jobs +++ b/script/background_jobs @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash cd $(dirname $0)/.. app_root=$(pwd) diff --git a/script/web b/script/web index 5464ed0..1ad3b5d 100755 --- a/script/web +++ b/script/web @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash cd $(dirname $0)/.. app_root=$(pwd) -- libgit2 0.21.2