11 lines
171 B
Bash
11 lines
171 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -eo pipefail
|
||
|
|
||
|
buildtools=$HOME/.electron_build_tools
|
||
|
|
||
|
export PATH="$PATH:$buildtools/src"
|
||
|
|
||
|
# Sync latest
|
||
|
e d gclient sync --with_branch_heads --with_tags
|