Commit bbf8fd2ee48fd8158846d8488a3414d999cdbacd

Authored by Jacob Vosmaer
2 parents 0331f36a 00ebfaa9

Merge branch 'environmentize-scripts-in-script-dir' into 'master'

Environmentize Scripts In Script Dir

Updated Rails.root/scripts/{web,background_jobs} to use #!/usr/bin/env bash to allow for less OS specifcs for the location of bash, namely FreeBSD or Systems that have bash installed from source but do not have the path exported 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 cd $(dirname $0)/.. 3 cd $(dirname $0)/..
4 app_root=$(pwd) 4 app_root=$(pwd)
1 -#!/bin/bash 1 +#!/usr/bin/env bash
2 2
3 cd $(dirname $0)/.. 3 cd $(dirname $0)/..
4 app_root=$(pwd) 4 app_root=$(pwd)