Files
core/Common/3dParty/v8/fetch.sh
Oleg Korshul 1496aece57 v8 (mac os)
2017-12-12 19:06:09 +03:00

21 lines
302 B
Bash
Executable File

#!/bin/bash
SCRIPT=$(readlink -f "$0")
SCRIPTPATH=$(dirname "$SCRIPT")
cd "$SCRIPTPATH"
if [ ! -d "depot_tools" ]
then
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
fi
export PATH=`pwd`/depot_tools:"$PATH"
if [ ! -d "./v8" ]
then
fetch v8
fi
gclient sync -r 4.10.253