diff options
author | teor <teor@torproject.org> | 2019-06-11 14:29:10 +1000 |
---|---|---|
committer | teor <teor@torproject.org> | 2019-06-11 14:29:10 +1000 |
commit | 973800b847844cfaacf48658d02fe3ada77cbcf6 (patch) | |
tree | 3d611a49f0a3293a8d040c7c360b03e393a0e516 /scripts/git/git-pull-all.sh | |
parent | 0635170cf14c3b622ee9fdf67ea81f4e564dd39d (diff) | |
download | tor-973800b847844cfaacf48658d02fe3ada77cbcf6.tar.gz tor-973800b847844cfaacf48658d02fe3ada77cbcf6.zip |
scripts/git: Stop hard-coding the bash path in the git scripts
Some OSes don't have bash in /usr/bin, others have an ancient bash at
this path.
Fixes bug 30840; bugfix on 0.4.0.1-alpha.
Diffstat (limited to 'scripts/git/git-pull-all.sh')
-rwxr-xr-x | scripts/git/git-pull-all.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/git/git-pull-all.sh b/scripts/git/git-pull-all.sh index 6fe7e59812..e5ba96a059 100755 --- a/scripts/git/git-pull-all.sh +++ b/scripts/git/git-pull-all.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash ################################## # User configuration (change me) # |