Source code
Revision control
Copy as Markdown
Other Tools
#!/bin/sh
# Copyright 2018 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
set -ex
get_depot_tools() {
cd
export PATH="$HOME/depot_tools:$PATH"
}
gclient_sync() {
cd "${TRAVIS_BUILD_DIR}"/..
gclient sync
cd gyp
}
main() {
get_depot_tools
gclient_sync
}
main "$@"