1
0
Fork 0
chromiumos-builder/fetch-repo.sh

12 lines
313 B
Bash
Raw Permalink Normal View History

2018-09-23 19:38:38 +08:00
#!/bin/sh
set -e
apk add --no-cache git
# See http://commondatastorage.googleapis.com/chrome-infra-docs/flat/depot_tools/docs/html/depot_tools_tutorial.html#_setting_up
echo "Getting depot_tools"
2018-10-07 16:14:45 +08:00
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git /depot_tools
rm -rf /depot_tools/.git
2018-09-23 19:38:38 +08:00