From: Tilman Sauerbeck Date: Mon, 25 Apr 2005 17:47:15 +0000 (+0000) Subject: Don't include one FileList in another. X-Git-Tag: redact-0.1.2~14 X-Git-Url: http://git.code-monkey.de/?p=redact.git;a=commitdiff_plain;h=7552791cc08595fd469c11feff1fa0899820022c Don't include one FileList in another. --- diff --git a/ChangeLog b/ChangeLog index eb381cf..0acb351 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,10 @@ -- -$Id: ChangeLog 36 2005-04-25 17:19:07Z tilman $ +$Id: ChangeLog 38 2005-04-25 17:47:15Z tilman $ ++ +2005-04-25 Tilman Sauerbeck (tilman at code-monkey de) + * Rakefile: Don't include one FileList in another + 2005-04-25 Tilman Sauerbeck (tilman at code-monkey de) * Released version 0.1.1 diff --git a/Rakefile b/Rakefile index 3e47175..d0940e5 100644 --- a/Rakefile +++ b/Rakefile @@ -1,4 +1,4 @@ -# $Id: Rakefile 34 2005-04-25 17:12:29Z tilman $ +# $Id: Rakefile 38 2005-04-25 17:47:15Z tilman $ require "rake/clean" require "rake/testtask" @@ -16,7 +16,7 @@ PKG_NAME = "redact" PKG_VERSION = File.read("lib/redact/redact.rb"). match(/^\s*VERSION = \"(.*)\"\s*$/).captures.first -CLOBBER.include(FileList["test/*.edj"]) +CLOBBER.include("test/*.edj") sitelibdir = Config::CONFIG["sitelibdir"] destdir = "#{ENV["DESTDIR"]}"