# HG changeset patch # User Jeff Hammel # Date 1296190659 28800 # Node ID 13a2a66b1c41dfa5b26bb97a6f094b9630ce4e2c # Parent f6774dcafb6a43eff4a4a5cdac3c5687527a82e4 comment the INSTALL script diff -r f6774dcafb6a -r 13a2a66b1c41 INSTALL.sh --- a/INSTALL.sh Tue Jan 25 16:40:34 2011 -0800 +++ b/INSTALL.sh Thu Jan 27 20:57:39 2011 -0800 @@ -1,15 +1,19 @@ #!/usr/bin/bash # installation script for autobot, the A*Team buildbot +# install using +# curl http://k0s.org/mozilla/hg/autobot/raw-file/tip/INSTALL.sh | bash REPO='http://k0s.org/mozilla/hg/autobot' + +# destination DEST='autobot' # name of the virtualenv - if [ "$#" != "0" ] then DEST=$1 fi +# make a virualenv if which virtualenv then virtualenv ${DEST} @@ -18,6 +22,8 @@ fi cd ${DEST} . bin/activate # linux only + +# checkout the repository mkdir src cd src hg clone ${REPO}