Skip to content

Commit 098670e

Browse files
author
Dane Springmeyer
committed
Move the v in the mason version
- This ensure that it is easy to point to a gitsha for mason without changing two places
1 parent 7ae7182 commit 098670e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/setup.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -eu
44
set -o pipefail
55

6-
export MASON_RELEASE="${MASON_RELEASE:-0.9.0}"
6+
export MASON_RELEASE="${MASON_RELEASE:-v0.9.0}"
77
export MASON_LLVM_RELEASE="${MASON_LLVM_RELEASE:-4.0.0}"
88

99
PLATFORM=$(uname | tr A-Z a-z)
@@ -59,7 +59,7 @@ function run() {
5959
local install_dir=${1}
6060
local mason_release=${2}
6161
mkdir -p ${install_dir}
62-
curl -sSfL https://github.com/mapbox/mason/archive/v${mason_release}.tar.gz | tar --gunzip --extract --strip-components=1 --directory=${install_dir}
62+
curl -sSfL https://github.com/mapbox/mason/archive/${mason_release}.tar.gz | tar --gunzip --extract --strip-components=1 --directory=${install_dir}
6363
}
6464

6565
setup_mason $(pwd)/.mason ${MASON_RELEASE}

0 commit comments

Comments
 (0)