diff --git a/Rakefile.new b/Rakefile.new index 4a0aabd20024ee8739c85f20564596300a946bb2..9abc4a066463b4be11deb0c9790c1f4b46603d5e 100644 --- a/Rakefile.new +++ b/Rakefile.new @@ -1,4 +1,4 @@ -load '/home/ram/src/andAllTheRestOfIt/building/CdoCdi.rake' +require '~/.rake/CdoCdi' class CdoBuild < CdoCdiBuild def generateTasks super @@ -11,11 +11,10 @@ class CdoBuild < CdoCdiBuild @help[:checkV] = 'run "cdo -V" to x-check the build' @builders.each {|builder| task "#{builder.name}_checkV".to_sym => ["#{builder.name}_make".to_sym] do |t| - CommandExecution.execute("./src/cdo -V'",builder) + CommandExecution.execute("./src/cdo -V",builder) end } end end - -build = CdoBuild.new(@rc) +build = CdoBuild.new build.generateTasks