mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
21 lines
302 B
Bash
Executable File
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
|