Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 #!/bin/sh | |
| 2 # Copyright 2014 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 while : | |
| 7 do | |
| 8 # Make sure auto-roll is up to date. | |
| 9 cd /src/build/scripts/tools/blink_roller | |
| 10 git pull --rebase | |
| 11 | |
| 12 # FIXME: We should probably remove any stale pyc files. | |
| 13 ./auto_roll.py blink blink-deps-roller@chromium.org /src/chromium/src | |
| 14 | |
| 15 echo 'Waiting 5 minutes between checks...' | |
| 16 sleep 300 | |
| 17 done | |
| OLD | NEW |