diff options
author | Tobias Markmann <tm@ayena.de> | 2014-10-16 09:25:11 (GMT) |
---|---|---|
committer | Swift Review <review@swift.im> | 2014-10-16 14:22:56 (GMT) |
commit | b70bc475dbf6f608cbc06754a7ce99f305fe0923 (patch) | |
tree | bfeb3a872b2375b29f5a42b1c9c865c14ba188fd | |
parent | 4da9f6d31e4a606da7f0def3a58197096c816e33 (diff) | |
download | swift-b70bc475dbf6f608cbc06754a7ce99f305fe0923.zip swift-b70bc475dbf6f608cbc06754a7ce99f305fe0923.tar.bz2 |
Add missing shebang to Boost update script.
Test-Information:
Without it would lead to executing failures for users of non-bash shells. Now it
works nicely for these users.
Change-Id: I63ef0c91d88800b382714692c0a37f6dcb14c283
-rwxr-xr-x | 3rdParty/Boost/update.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/3rdParty/Boost/update.sh b/3rdParty/Boost/update.sh index 2fe348c..f7cef44 100755 --- a/3rdParty/Boost/update.sh +++ b/3rdParty/Boost/update.sh @@ -1,3 +1,4 @@ +#!/usr/bin/env bash if [ -z "$1" ]; then echo "Please specify the location of the boost source tree" exit -1 |