diff options
author | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-23 23:10:06 +0000 |
---|---|---|
committer | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-23 23:10:06 +0000 |
commit | 9737f8b1551adb5d3be62b1922de27d867ac2b24 (patch) | |
tree | f323393999b6bd7c2cd917eeb90b9b78e4e2473e /build | |
parent | b4abce3ffa62d14b52a688b4595aa7f7de620f03 (diff) | |
download | chromium_src-9737f8b1551adb5d3be62b1922de27d867ac2b24.zip chromium_src-9737f8b1551adb5d3be62b1922de27d867ac2b24.tar.gz chromium_src-9737f8b1551adb5d3be62b1922de27d867ac2b24.tar.bz2 |
Add forwarding script for build-bisect.py.
TODO(evan): remove this in a few months.
Review URL: http://codereview.chromium.org/6096001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70112 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rwxr-xr-x | build/build-bisect.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/build/build-bisect.py b/build/build-bisect.py new file mode 100755 index 0000000..33fcb89 --- /dev/null +++ b/build/build-bisect.py @@ -0,0 +1,11 @@ +#!/usr/bin/python +# Copyright (c) 2010 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +import sys + +print "This script has been moved to tools/bisect-builds.py." +print "Please update any docs you're working from!" + +sys.exit(1) |