You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
482 B
23 lines
482 B
9 years ago
|
"use strict";
|
||
|
|
||
|
var fse = require('fs-extra');
|
||
|
|
||
|
module.exports = function (params, processor) {
|
||
|
return {
|
||
|
process: function () {
|
||
|
var sourceFilePath = processor.context.exported + "/" + params.filename;
|
||
|
|
||
|
processor.onInfo("Deleting " + sourceFilePath);
|
||
|
|
||
|
fse.remove(sourceFilePath, function(err) {
|
||
|
if (err) {
|
||
|
processor.onError("Unable to delete file: " + err);
|
||
|
} else {
|
||
|
processor.onInfo("Deleted file");
|
||
|
}
|
||
|
return processor.done();
|
||
|
});
|
||
|
}
|
||
|
};
|
||
|
};
|