我试图从模板中使用Yeoman生成项目。我可以从portanova模板文件夹中复制所有文件,但我无法复制其他模板文件夹中的文件并将其添加到我的项目中。它给了我异常“对目录的非法操作”。 我做错了什么?
this.log(yosay(
'Welcome to the fantabulous ' + chalk.red('') + ' generator!'
));
var prompts = [{
name: 'projectName',
message: 'What do you want to call the new project ?'
},{
name: 'answer',
message: 'would you like to add File X ?'
}
];
this.prompt(prompts, function (props) {
this.projectName = props.projectName;
this.answer = props.answer;
done();
}.bind(this));
},
writing: function () {
this.fs.copy(
this.templatePath('portanova_template'),
this.destinationPath(this.projectName)
);
if(this.answer=='yes'){
this.fs.copy(
this.templatePath('externalTemplate/fileX.html'),
this.destinationPath(this.projectName+'/app')
);
}
},
答案 0 :(得分:0)
检查您是否有权从第二个文件夹复制,如果不是,请尝试:
chmod -R 777 /Your/folder
Ps(-R:处理文件夹)