Skip to content

Commit

Permalink
[Locale] add details on csv parsing error (#1989)
Browse files Browse the repository at this point in the history
add details on csv parsing error, it can helps :) At least, it helped me.
  • Loading branch information
loudoweb authored and moloko committed Mar 6, 2018
1 parent b5e8bd2 commit e7c8367
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grunt/tasks/translate/loadLanguageFiles.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ module.exports = function (grunt) {

function _cb (err) {
if (err) {
throw grunt.util.error("Error processing CSV files.");
throw grunt.util.error("Error processing CSV files:" + err);
} else {
for (var i = 0; i < lines.length; i++) {
var line = lines[i];
Expand Down

0 comments on commit e7c8367

Please sign in to comment.