[vinyl ftp] で自分のものを展開しようとすると、エラーが発生します。
ログは次のとおりです。
[12:16:46] MLSD /
[12:16:46] LIST /httpdocs/config
[12:16:46] LIST /
[12:16:46] MLSD /httpdocs/config/Lang
[12:16:46] MKDIR /httpdocs/config
events.js:72
throw er; // Unhandled 'error' event
設定は次のとおりです。
gulp.task('deploy', function () {
var conn = ftp.create({
host: 'xxx,
user: 'xxx',
password: 'xxx',
parallel: 10,
log: gutil.log
});
var globs = [
'../' + projectUI + '/config/**'
];
gulp.src(globs, { base: '../' + projectUI, buffer: false })
.pipe(conn.newer('/httpdocs')) // only upload newer files
.pipe(conn.dest('/httpdocs'))
});
config
ご覧のとおり、フォルダーが既に存在する場合でも、彼はフォルダーを作成しようとします。
フォルダーのコンテンツは、config
いくつかの xml ファイルです。