blob: 3f8cf513c8f7c070e22dbb9981f078ec35678fe1 [file] [log] [blame]
Mike Frysingerc40e52f2019-08-02 11:04:17 -04001# Copyright 2019 The Chromium OS Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5"""Hook to stop people from running `git cl`."""
6
Mike Frysingerc40e52f2019-08-02 11:04:17 -04007import sys
8
9
10def CheckChangeOnUpload(_input_api, _output_api):
11 print('ERROR: CrOS repos use `repo upload`, not `git cl upload`.',
12 file=sys.stderr)
13 sys.exit(1)