From: <jh...@us...> - 2009-12-04 23:54:14
|
Revision: 179 http://etch.svn.sourceforge.net/etch/?rev=179&view=rev Author: jheiss Date: 2009-12-04 23:54:08 +0000 (Fri, 04 Dec 2009) Log Message: ----------- Update per demise of alltests.rb Add LICENSE file to distribution. Modified Paths: -------------- Rakefile Modified: Rakefile =================================================================== --- Rakefile 2009-12-03 23:01:12 UTC (rev 178) +++ Rakefile 2009-12-04 23:54:08 UTC (rev 179) @@ -5,20 +5,20 @@ desc 'Run test suite in trunk' task :test_trunk do - system('./trunk/test/alltests.rb') + system('cd trunk/client && rake test') end desc 'Run test suite in current tag' task :test_tag do - system("./#{TAGDIR}/test/alltests.rb") + system("cd #{TAGDIR}/client && rake test") end desc 'Build distribution files for new release' -#task :dist => :test_tag do +#task :dist => [:tag, :test_tag] do task :dist do rm_rf(DIST) mkdir(DIST) - system("(cd #{TAGDIR} && find client server test etchserver-* README VERSION | grep -v '\.svn' | cpio -pdum ../../#{DIST})") + system("(cd #{TAGDIR} && find client server test etchserver-* LICENSE README VERSION | grep -v '\.svn' | cpio -pdum ../../#{DIST})") system("tar czf #{DIST}.tar.gz #{DIST}") rm_rf(DIST) system("openssl md5 #{DIST}.tar.gz > #{DIST}.tar.gz.md5") This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |