We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ae7182 commit 098670eCopy full SHA for 098670e
1 file changed
scripts/setup.sh
@@ -3,7 +3,7 @@
3
set -eu
4
set -o pipefail
5
6
-export MASON_RELEASE="${MASON_RELEASE:-0.9.0}"
+export MASON_RELEASE="${MASON_RELEASE:-v0.9.0}"
7
export MASON_LLVM_RELEASE="${MASON_LLVM_RELEASE:-4.0.0}"
8
9
PLATFORM=$(uname | tr A-Z a-z)
@@ -59,7 +59,7 @@ function run() {
59
local install_dir=${1}
60
local mason_release=${2}
61
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}
+ curl -sSfL https://github.com/mapbox/mason/archive/${mason_release}.tar.gz | tar --gunzip --extract --strip-components=1 --directory=${install_dir}
63
}
64
65
setup_mason $(pwd)/.mason ${MASON_RELEASE}
0 commit comments