我正在尝试使用 运行一个简单的grunt
任务grunt-contrib-copy
,但它在到达复制任务时立即死亡,并显示以下消息:
运行“copy:main”(复制)任务
警告:EPERM,不允许操作 'C:\Documents and Settings' 使用 --force 继续
由于警告而中止
我在跑步:
- Windows 7 64 位(所以
C:\Documents and Settings
不存在) - 节点 0.10.28(安装在
C:\nodejs
) - npm 1.4.9
- 咕噜声-cli 0.1.13
- 咕噜声 0.4.5
- grunt-contrib-copy 0.5.0
C:\nodejs
我已经在我的项目文件夹(C:\Users\myusername\Documents\Programming\myprojectname
,其中没有空格或括号)上对“文档和设置”进行了全文搜索,但没有匹配项。
我的copy
任务定义是:
copy: {
main: {
files: [
{expand: true, cwd: 'src/core', src: '/**', dest: 'src/chrome/'},
{expand: true, cwd: 'src/core', src: '/**', dest: 'src/firefox/'}
]
}
},
什么可能导致此错误?