我目前使用grunt-shell从grunt任务运行 shell 命令。除了用'&&'将它们串在一起之外,有没有更好的方法在一个任务中运行多个命令?
我的 Gruntfile(部分):
grunt.initConfig({
shell: {
deploy: {
options: { stdout: true },
command: 'mkdir -p static/styles && cp public/styles/main.css static/styles'
}
}
});
一系列命令不起作用,但它会很好:
grunt.initConfig({
shell: {
deploy: {
options: { stdout: true },
command: [
'mkdir -p static/styles',
'cp public/styles/main.css static/styles'
]
}
}
});