1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
buildtools / reclient_cfgs / fetch_reclient_cfgs.py [blame]
#!/usr/bin/env python3
# Copyright 2021 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""This script is used to fetch reclient cfgs.
This is renamed to configure_reclient_cfgs.py, delete this file if there are no
reference to this file.
"""
import sys
import configure_reclient_cfgs
if __name__ == '__main__':
sys.exit(configure_reclient_cfgs.main())