W
warhero
Hey all,
I am trying to get some rake tasks going. I have a package task that is
this:
Rake:
ackageTask.new("deploy", ARGV[1]) do |p|
p.need_zip = true
p.name = 'rubyamf'
p.package_files.include("lib/**/*.*")
p.package_dir = "deploy"
end
when I run 'rake package 0.5.5' it creates the directories fine (deploy
and deploy/rubyamf-0.5.5/). But then it halts and gives me an error:
.........
.........
cd deploy
zip -r rubyamf-0.5.5.zip rubyamf-0.5.5
rake aborted!
undefined method `exitstatus' for nil:NilClass
Anyone have an idea what this might be from?
I am trying to get some rake tasks going. I have a package task that is
this:
Rake:
p.need_zip = true
p.name = 'rubyamf'
p.package_files.include("lib/**/*.*")
p.package_dir = "deploy"
end
when I run 'rake package 0.5.5' it creates the directories fine (deploy
and deploy/rubyamf-0.5.5/). But then it halts and gives me an error:
.........
.........
cd deploy
zip -r rubyamf-0.5.5.zip rubyamf-0.5.5
rake aborted!
undefined method `exitstatus' for nil:NilClass
Anyone have an idea what this might be from?