This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Exit the script if any individual command or command group errors out | |
| set -e | |
| cd ~/ | |
| if ! [ -e ~/depot_tools ]; then | |
| git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git | |
| echo | |
| fi |
OlderNewer