1#!/usr/bin/env python 2# Copyright 2016 Google Inc. 3# Use of this source code is governed by a BSD-style license that can be 4# found in the LICENSE file. 5 6""" 7Calls `GIT_SYNC_DEPS_QUIET=T tools/git-sync-deps`. 8""" 9 10import os 11import subprocess 12import sys 13 14path = 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')) 17