Skip to content
This repository has been archived by the owner on Nov 7, 2024. It is now read-only.

Commit

Permalink
Fix broken path for destination
Browse files Browse the repository at this point in the history
  • Loading branch information
Rasmus Bengtsson committed Dec 14, 2016
1 parent 89e1450 commit 3d8be16
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 3d8be16

Please sign in to comment.