Meteor `mrt add`在Windows上安装带有Vagrant的Atmosphere软件包时引发未知错误

Meteor `mrt add`在Windows上安装带有Vagrant的Atmosphere软件包时引发未知错误,meteor,vagrant,atmosphere,meteorite,Meteor,Vagrant,Atmosphere,Meteorite,在Windows 7上使用Vagrant ssh,mrt add SCS(作为示例)在控制台中显示以下内容: vagrant@vagrant:/vagrant/MyMeteorApp$ mrt add scss scss tag: https://github.com/fourseven/meteor-scss.git#v0.5.1.1 fs.js:730 return binding.symlink(preprocessSymlinkDestination(destination

在Windows 7上使用Vagrant ssh,
mrt add SCS
(作为示例)在控制台中显示以下内容:

vagrant@vagrant:/vagrant/MyMeteorApp$ mrt add scss
scss
    tag: https://github.com/fourseven/meteor-scss.git#v0.5.1.1

fs.js:730
  return binding.symlink(preprocessSymlinkDestination(destination, type),
                 ^
Error: UNKNOWN, unknown error '/vagrant/MyMeteorApp/packages/scss'
    at Object.fs.symlinkSync (fs.js:730:18)
    at /usr/local/lib/node_modules/meteorite/lib/dependencies/package.js:129:10
    at /usr/local/lib/node_modules/meteorite/lib/sources/git.js:75:15
    at ProxyWriter.<anonymous> (/usr/local/lib/node_modules/meteorite/lib.souces/git.js:138:5)
    at DirWriter.EventEmitter.emit (events.js:92:17)
    at end (/usr/local/lib/node_modules/meteorite/node_modules/fstream/lib/writer.js:323:12)
    at /usr/local/lib/node_modules/meteorite/node_modules/fstream/lib/writer.js:313:32
    at endUtimes (/usr/local/lib/node_modules/meteorite/node_modules/fstream/lib/writer.js:239:48
    at setProps (/usr/local/lib/node_modules/meteorite/node_modules/fstream/lib/writer.js:296:5)
无论何时再次运行mrt,控制台都会显示
smart.json changed。。从smart.json安装并挂起。
我确实在
/home/vagrant/.meteorite/packages/scss
找到了包裹,但它不在其他地方。


我的环境是使用设置的。节点的版本为0.10.10。操作系统是Ubuntu。我试过了

非常感谢您的帮助,我已经试着让它工作了两天。

我想这就是问题所在。Meteorite 0.6.0使用符号链接,但Windows无法处理。尝试将sass文件夹复制到包中,而不是使其成为符号链接。
您需要使用cp-rL复制一些软件包

您使用的是什么版本的meteorite?meteorite版本是0.6.0我认为这就是问题所在。Meteorite 0.6.0使用符号链接,但Windows无法处理。尝试将sass文件夹复制到包中,而不是使其为
scss
的symlinksWorked。对于其他一些软件包,我必须使用cp-rL进行复制。谢谢。你介意投票作为正确答案,让其他人看到吗?
"packages": {
  "scss": {}
}