From e6419e7cfe26cbda8b78e4f5ed413e6604f3f6c3 Mon Sep 17 00:00:00 2001 From: Slava Kim Date: Thu, 5 Feb 2015 16:17:53 -0800 Subject: [PATCH] Make all calls to copyDirectory to explicitely state the option "symlink: false" --- tools/isopack.js | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/tools/isopack.js b/tools/isopack.js index 7d37a28176..7850fcda67 100644 --- a/tools/isopack.js +++ b/tools/isopack.js @@ -1031,7 +1031,8 @@ _.extend(Isopack.prototype, { delete toolMeta.rootDir; builder.copyDirectory({ from: files.pathJoin(rootDir, toolMeta.path), - to: toolMeta.path + to: toolMeta.path, + symlink: false }); if (!mainJson.tools) { mainJson.tools = []; @@ -1107,7 +1108,8 @@ _.extend(Isopack.prototype, { builder.copyDirectory({ from: files.getCurrentToolsDir(), to: '', - specificFiles: pathsToCopy + specificFiles: pathsToCopy, + symlink: false }); // Include the dev bundle, but drop a few things that are only used by @@ -1117,7 +1119,8 @@ _.extend(Isopack.prototype, { builder.copyDirectory({ from: files.pathJoin(files.getDevBundle()), to: 'dev_bundle', - ignore: devBundleIgnore + ignore: devBundleIgnore, + symlink: false }); // Build all of the isopackets now, so that no build step is required when