From: <jh...@us...> - 2011-04-12 06:59:21
|
Revision: 272 http://etch.svn.sourceforge.net/etch/?rev=272&view=rev Author: jheiss Date: 2011-04-12 06:59:15 +0000 (Tue, 12 Apr 2011) Log Message: ----------- Fix the line that generates the distribution tarball to properly exclude databases and log files. Modified Paths: -------------- Rakefile Modified: Rakefile =================================================================== --- Rakefile 2011-04-12 06:49:05 UTC (rev 271) +++ Rakefile 2011-04-12 06:59:15 UTC (rev 272) @@ -18,7 +18,7 @@ task :dist do rm_rf(DIST) mkdir(DIST) - system("(cd #{TAGDIR} && find client server test etchserver-* LICENSE README VERSION | grep -v '\.svn' | grep -v server/log/*.log | grep -v server/db/*.sqlite3 | cpio -pdum ../../#{DIST})") + system("(cd #{TAGDIR} && find client server test etchserver-* LICENSE README VERSION | grep -v '\\.svn' | grep -v server/log/.*.log | grep -v server/db/.*.sqlite3 | 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. |