blob: 9ee5991babd6108da236a66154cf6ae2a127a925 [file] [log] [blame]
Mike Frysingerf1ba7ad2022-09-12 05:42:57 -04001# Copyright 2019 The ChromiumOS Authors
Mike Frysingerc40e52f2019-08-02 11:04:17 -04002# 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
Lizzy Presland2818e2b2022-12-17 00:05:51 +000010USE_PYTHON3 = True
11
12
Mike Frysingerc40e52f2019-08-02 11:04:17 -040013def CheckChangeOnUpload(_input_api, _output_api):
Alex Klein1699fab2022-09-08 08:46:06 -060014 print(
15 "ERROR: CrOS repos use `repo upload`, not `git cl upload`.",
16 file=sys.stderr,
17 )
18 sys.exit(1)