Index: commit-queue/loop.sh |
=================================================================== |
--- commit-queue/loop.sh (revision 249146) |
+++ commit-queue/loop.sh (working copy) |
@@ -1,14 +0,0 @@ |
-#!/usr/bin/env bash |
-# Copyright (c) 2012 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. |
-# |
-# Runs a command in a loop. This is to have the commit queue automatically |
-# restart. 23 is an arbitrary value to signal that the loop must stop. |
- |
-while true; do |
- "$@" |
- if [ $? -eq 23 ]; then |
- break |
- fi |
-done |