From 6f718047b490a99e2232189ead5cdad352135e24 Mon Sep 17 00:00:00 2001 From: Rene Saarsoo Date: Fri, 25 Nov 2011 11:47:57 +0200 Subject: [PATCH] Ignore missing package definitions in JSB file. Also convert paths to canonical format. --- Rakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Rakefile b/Rakefile index a168dc20..696bb42b 100644 --- a/Rakefile +++ b/Rakefile @@ -420,8 +420,8 @@ class JsDuckRunner return json["builds"][0]["packages"].map do |package_id| package = json["packages"].find {|p| p["id"] == package_id } - package["files"].map do |file| - basedir + "/" + file["path"] + file["name"] + (package ? package["files"] : []).map do |file| + File.expand_path(basedir + "/" + file["path"] + file["name"]) end end.flatten end -- GitLab