wishthis/node_modules/gulp-git/lib/rm.js
2022-01-21 09:28:41 +01:00

38 lines
906 B
JavaScript

'use strict';
var through = require('through2');
var log = require('fancy-log');
var exec = require('child_process').exec;
var escape = require('any-shell-escape');
module.exports = function (opt) {
if (!opt) opt = {};
if (!opt.args) opt.args = ' ';
var paths = [];
var files = [];
var fileCwd = process.cwd;
var write = function(file, enc, cb) {
paths.push(file.path);
files.push(file);
fileCwd = file.cwd;
cb();
};
var flush = function(cb) {
var cwd = opt.cwd || fileCwd;
var maxBuffer = opt.maxBuffer || 200 * 1024;
var cmd = 'git rm ' + escape(paths) + ' ' + opt.args;
var that = this;
exec(cmd, {cwd: cwd, maxBuffer: maxBuffer}, function(err, stdout, stderr) {
if (err) return cb(err);
if (!opt.quiet) log(stdout, stderr);
files.forEach(that.push.bind(that));
cb();
});
};
return through.obj(write, flush);
};