From 3d8be169775cffa6cd7694fb350e1bb909a3920d Mon Sep 17 00:00:00 2001 From: Rasmus Bengtsson Date: Wed, 14 Dec 2016 16:48:27 +0100 Subject: [PATCH] Fix broken path for destination --- index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.js b/index.js index ae4d9df..5e4e8f9 100755 --- a/index.js +++ b/index.js @@ -51,7 +51,8 @@ function gulpWPpot (options) { const potContents = wpPot(options); const potFile = new gutil.File({ - contents: new Buffer(potContents) + contents: new Buffer(potContents), + path: '.' }); this.push(potFile);