Skip to content

Commit 2e86351

Browse files
committed
fixed empty file check
1 parent f6461db commit 2e86351

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Gruntfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -605,7 +605,7 @@ module.exports = function (grunt) {
605605
let poTerms = "{}";
606606
if (grunt.file.exists(tempFile)) {
607607
poTerms = grunt.file.read(tempFile);
608-
if (poTerms === null) {
608+
if (poTerms === "") {
609609
poTerms = "{}";
610610
}
611611
}

0 commit comments

Comments
 (0)