Merge pull request #2913 from rickard-von-essen/portable_scripts

Make all scripts portable regardless of where bash is installed.
This commit is contained in:
Mark Peek 2015-11-04 07:07:39 -08:00
commit 6ec8c3cbb1
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.
set -e

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -e
# Get the parent directory of where this script is.

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -e
# Get the parent directory of where this script is.

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# Set the tmpdir
if [ -z "$TMPDIR" ]; then