fix mason setup
This commit is contained in:
parent
03192c5f2a
commit
bdc49e2adb
1 changed files with 3 additions and 3 deletions
|
@ -70,10 +70,10 @@ if [[ -d ~/.mason ]]; then
|
|||
export PATH=~/.mason:$PATH
|
||||
else
|
||||
if [[ ! -d mason ]]; then
|
||||
git clone --depth 1 https://github.com/mapbox/mason.git
|
||||
git clone --depth 1 https://github.com/mapbox/mason.git ./.mason
|
||||
fi
|
||||
export MASON_DIR=$(pwd)
|
||||
export PATH=$(pwd)/mason:$PATH
|
||||
export MASON_DIR=$(pwd)/.mason
|
||||
export PATH=$(pwd)/.mason:$PATH
|
||||
fi
|
||||
|
||||
for DEP in "${!DEPS[@]}"; do
|
||||
|
|
Loading…
Reference in a new issue