diff options
author | Konstantin Käfer <mail@kkaefer.com> | 2014-10-31 17:33:10 -0400 |
---|---|---|
committer | Konstantin Käfer <mail@kkaefer.com> | 2014-10-31 17:33:10 -0400 |
commit | 03ae142d7257999b196593cf8bea77bdc2f50915 (patch) | |
tree | 8fe926343855679d8950103d78a334782a0651c8 /configure | |
parent | 16bd75c6ccc0340295d65e04728239a7eea693dd (diff) | |
download | qtlocation-mapboxgl-03ae142d7257999b196593cf8bea77bdc2f50915.tar.gz |
use a local version of mason instead of writing into ~/.mason
fixes #526
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -2,7 +2,6 @@ set -e set -o pipefail -shopt -s expand_aliases CONFIG_FILE=${1:-config.gypi} @@ -16,11 +15,7 @@ function finish { trap finish EXIT # Install mason -if [[ ! -d ~/.mason ]]; then - >&2 echo -e "\033[1m\033[32m* Installing Mason\033[0m" - git clone https://github.com/mapbox/mason.git ~/.mason -fi -alias mason='~/.mason/mason' +. ./scripts/local_mason.sh case ${MASON_PLATFORM} in 'ios') |