If you're going to frequently get the latest from SVN, I suggest using
a script like the following. It assumes you are in a directory that
contains the subdirectories "clojure" and "clojure-contrib" that were
initially created by doing svn checkouts. This is for UNIX, Linux or
Mac. You should be able to write an equivalent Windows script.

#!/bin/bash
# Gets the latest versions of clojure and clojure-contrib.
cd clojure/trunk
svn update
ant clean jar
cd -
cd clojure-contrib/trunk
svn update
ant clean jar
cd -

I have this in a file named "getLatest.sh".
Whenever I want the latest I just run "./getLatest.sh".

-- 
R. Mark Volkmann
Object Computing, Inc.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To post to this group, send email to clojure@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/clojure?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to