我正在尝试使用gulp-shell
. 我的gulfile.js
包含以下内容:
var gulp = require('gulp'),
shell = require('gulp-shell');
gulp.task('test', function() {
shell(['echo test']);
});
然后我运行它调用gulp test
. 这是我得到的输出:
Using gulpfile ~/gulpfile.js
Starting 'test'...
Finished 'test' after 2.62 ms
我的回声呼叫没有输出。
我正在使用Ubuntu 14 VM
我连接的一个,使用Putty
.
有人知道出了什么问题吗?