| OLD | NEW |
| (Empty) |
| 1 #!/bin/bash -ex | |
| 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
| 3 # Use of this source code is governed by a BSD-style license that can be | |
| 4 # found in the LICENSE file. | |
| 5 # | |
| 6 # Currently used as the entry point by both trybot and FYI bot. | |
| 7 # TODO(jrg): redirect those bots to buildbot_try_compile.sh and | |
| 8 # buildbot_fyi.sh, then delete this file. | |
| 9 | |
| 10 | |
| 11 ROOT=$(cd "$(dirname $0)"; pwd) | |
| 12 if [ "${TRYBOT:-0}" = 1 ] ; then | |
| 13 exec $ROOT/buildbot_try_compile.sh | |
| 14 else | |
| 15 exec $ROOT/buildbot_fyi.sh | |
| 16 fi | |
| OLD | NEW |