diff options
author | Jacob Vosmaer <contact@jacobvosmaer.nl> | 2014-02-14 15:45:32 +0000 |
---|---|---|
committer | Jacob Vosmaer <contact@jacobvosmaer.nl> | 2014-02-14 15:45:32 +0000 |
commit | bbf8fd2ee48fd8158846d8488a3414d999cdbacd (patch) | |
tree | b62d57510a7bf661f98bb9db886c5092f7a93047 /script/web | |
parent | 0331f36a2c97180b95355cc676b3c8238c763789 (diff) | |
parent | 00ebfaa9425dda6dc60ddc98b69050c28bb19ec6 (diff) | |
download | gitlab-ce-bbf8fd2ee48fd8158846d8488a3414d999cdbacd.tar.gz |
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}
Diffstat (limited to 'script/web')
-rwxr-xr-x | script/web | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/web b/script/web index 5464ed040aa..1ad3b5d24b9 100755 --- a/script/web +++ b/script/web @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash cd $(dirname $0)/.. app_root=$(pwd) |