Skip to content

Commit

Permalink
Fix bug with latest Mac OS JSC
Browse files Browse the repository at this point in the history
  • Loading branch information
Antoine Mercadal committed Sep 12, 2011
1 parent 9f4894a commit 3ca0caf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/narwhal-lib/lib/narwhal/packages.js
Expand Up @@ -549,7 +549,7 @@ exports.updateUsingCatalog = function(options, usingCatalog, path, id, packageDa
usingCatalog[id]["packages"][pair[0]] = exports.normalizePackageDescriptor(pair[1]);
});
}
if(UTIL.has(options, "includeBuildDependencies") &&
if(options && UTIL.has(options, "includeBuildDependencies") &&
options.includeBuildDependencies &&
UTIL.has(packageDatum, "build") &&
UTIL.has(packageDatum.build, "using")) {
Expand Down

0 comments on commit 3ca0caf

Please sign in to comment.