view INSTALL.sh @ 62:2a5fa6876e48

update template to conform to the new CLI
author Jeff Hammel <jhammel@mozilla.com>
date Tue, 11 Jan 2011 09:18:33 -0800
parents 59bbfa7e67bb
children 04e41ee436c3
line wrap: on
line source

# installation script for autobot, the A*Team buildbot

REPO='http://k0s.org/mozilla/hg/autobot'
DEST='autobot' # name of the virtualenv

if [ "$#" != "0" ]
then
    DEST=$1
fi

virtualenv ${DEST}
cd autobot
. bin/activate # linux only
mkdir src
cd src
hg clone ${REPO}
cd autobot
python setup.py develop

# now you can run `create-autobot` to get a testing bot!