Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 #!/bin/bash | |
| 2 | |
|
Siggi Cherem (dart-lang)
2011/12/02 21:33:43
remove empty line
| |
| 3 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | |
| 4 # for details. All rights reserved. Use of this source code is governed by a | |
| 5 # BSD-style license that can be found in the LICENSE file. | |
| 6 | |
| 7 # Run to install the necessary components to run webdriver on the buildbots. | |
| 8 # NOTE: YOU WILL NEED TO RUN THIS SCRIPT AS ROOT IN ORDER FOR IT TO SUCCESSFULLY | |
| 9 # INSTALL COMPONENTS. | |
| 10 | |
| 11 curl http://python-distribute.org/distribute_setup.py | sudo python | |
| 12 curl https://raw.github.com/pypa/pip/master/contrib/get-pip.py | sudo python | |
| 13 pip install -U selenium | |
| 14 wget -O - http://releases.mozilla.org/pub/mozilla.org/firefox/releases/8.0.1/lin ux-x86_64/en-US/firefox-8.0.1.tar.bz2 | tar -C ~ -jxv | |
| OLD | NEW |