Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 #!/bin/bash | |
| 2 # Copyright 2016 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 echo "Killing previous instance of checker.py (if applicable)" | |
| 7 pkill -f checker.py | |
| 8 nohup ./checker.py >/dev/null 2>&1 & | |
| 9 echo "Started checker process in background" | |
| OLD | NEW |