blob: c75cdbdb28a106ac949a41e5c13cd7f10cca4c37 [file] [log] [blame]
halcanary21736bd2016-04-25 13:34:06 -07001#!/usr/bin/env python
halcanary21736bd2016-04-25 13:34:06 -07002# Copyright 2016 Google Inc.
halcanary21736bd2016-04-25 13:34:06 -07003# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5
Hal Canary8c2ccf42019-02-22 14:14:31 -05006"""
7Calls `GIT_SYNC_DEPS_QUIET=T tools/git-sync-deps`.
8"""
halcanary21736bd2016-04-25 13:34:06 -07009
halcanary21736bd2016-04-25 13:34:06 -070010import os
11import subprocess
12import sys
13
Hal Canary8c2ccf42019-02-22 14:14:31 -050014path = os.path.dirname(__file__) + '/../tools/git-sync-deps'
15subprocess.check_call([sys.executable, path] + sys.argv[:1],
16 env=dict(os.environ, GIT_SYNC_DEPS_QUIET='T'))