2016-04-25 20:34:06 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# Copyright 2016 Google Inc.
|
|
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
|
|
# found in the LICENSE file.
|
|
|
|
|
2019-02-22 19:14:31 +00:00
|
|
|
"""
|
|
|
|
Calls `GIT_SYNC_DEPS_QUIET=T tools/git-sync-deps`.
|
|
|
|
"""
|
2016-04-25 20:34:06 +00:00
|
|
|
|
|
|
|
import os
|
|
|
|
import subprocess
|
|
|
|
import sys
|
|
|
|
|
2019-02-22 19:14:31 +00:00
|
|
|
path = os.path.dirname(__file__) + '/../tools/git-sync-deps'
|
|
|
|
subprocess.check_call([sys.executable, path] + sys.argv[:1],
|
|
|
|
env=dict(os.environ, GIT_SYNC_DEPS_QUIET='T'))
|