Commit 00ebfaa9425dda6dc60ddc98b69050c28bb19ec6

Authored by Matthew Trisoline
1 parent baf8afc6

Updated script/{web,background_job} to use #!/usr/bin/env bash rather than #!/bi…

…n/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}
Showing 2 changed files with 2 additions and 2 deletions   Show diff stats
script/background_jobs
1   -#!/bin/bash
  1 +#!/usr/bin/env bash
2 2  
3 3 cd $(dirname $0)/..
4 4 app_root=$(pwd)
... ...
script/web
1   -#!/bin/bash
  1 +#!/usr/bin/env bash
2 2  
3 3 cd $(dirname $0)/..
4 4 app_root=$(pwd)
... ...