Merge pull request #446 from sofuture/master

use /usr/bin/env to find bash in scripts
This commit is contained in:
Armon Dadgar 2015-07-22 17:23:14 -07:00
commit 6948c7dcb3
4 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
# #
# This script builds the application from source for multiple platforms. # This script builds the application from source for multiple platforms.
set -e set -e

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
set -e set -e
# Get the version from the command line # Get the version from the command line

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
# Get the parent directory of where this script is. # Get the parent directory of where this script is.
SOURCE="${BASH_SOURCE[0]}" SOURCE="${BASH_SOURCE[0]}"

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
set -e set -e
# Install packages # Install packages