changeset 158:13a2a66b1c41

comment the INSTALL script
author Jeff Hammel <jhammel@mozilla.com>
date Thu, 27 Jan 2011 20:57:39 -0800
parents f6774dcafb6a
children b4e1edfd49ee
files INSTALL.sh
diffstat 1 files changed, 7 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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}