From c8f4152f040aa35e42aef7ced6afdeef40cd1c7b Mon Sep 17 00:00:00 2001 From: ekatek Date: Fri, 19 Sep 2014 21:47:05 -0700 Subject: [PATCH] fix running from release to work --- tools/project.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/project.js b/tools/project.js index 647075968a..f4e42252de 100644 --- a/tools/project.js +++ b/tools/project.js @@ -313,7 +313,7 @@ _.extend(Project.prototype, { // those. _.each(releasePackages, function(version, name) { allDeps.push({name: name, weak: true, - constraintStr: "=" + name, + constraintString: "=" + name, constraints: [ { version: version, type: 'exactly' } ]}); });