diff --git a/tasks/compile.js b/tasks/compile.js index 46ab25f..8093fb1 100644 --- a/tasks/compile.js +++ b/tasks/compile.js @@ -25,7 +25,7 @@ module.exports = function (grunt) { for (var dest in output) { var compiler = new Compiler(options); - grunt.file.write(dest, compiler.convertPo(output[dest])); + grunt.file.write(dest, compiler.convertPo(output[dest], dest)); } }); };