Skip to content

Instantly share code, notes, and snippets.

View pdubroy's full-sized avatar

Patrick Dubroy pdubroy

View GitHub Profile
#!/bin/bash -e
# Get depot_tools.
command -v gclient >/dev/null 2>&1 ||
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
cat >> $HOME/.bashrc <<EOF
# Added by $(basename $0)
export PATH=$PWD/depot_tools:$PATH
EOF