From: <jh...@us...> - 2009-11-14 18:19:00
|
Revision: 162 http://etch.svn.sourceforge.net/etch/?rev=162&view=rev Author: jheiss Date: 2009-11-14 18:18:52 +0000 (Sat, 14 Nov 2009) Log Message: ----------- Don't make dist dependent on test for now, tests take a long time to run and require a bunch of prerequisites that might not be set up on the box used to build the distribution files. Assume the user has run the test suite themselves. Modified Paths: -------------- Rakefile Modified: Rakefile =================================================================== --- Rakefile 2009-11-14 18:15:24 UTC (rev 161) +++ Rakefile 2009-11-14 18:18:52 UTC (rev 162) @@ -14,7 +14,8 @@ end desc 'Build distribution files for new release' -task :dist => :test do +#task :dist => :test_tag do +task :dist do rm_rf(DIST) mkdir(DIST) system("(cd #{TAGDIR} && find client server test etchserver-* README | grep -v '\.svn' | cpio -pdum ../../#{DIST})") This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |