mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Make all calls to copyDirectory to explicitely state the option "symlink: false"
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user