Skip to content

Commit f808882

Browse files
authored
Merge pull request #104 from sarahelsaig/not-single-file-bug-fix
Fix missing negation when exporting not in Single File mode
2 parents 6e065e4 + ac54ff5 commit f808882

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/OrchardCoreContrib.PoExtractor/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ public static void Main(string[] args)
102102
projectProcessor.Process(projectPath, projectBasePath, localizableStrings);
103103
}
104104

105-
if (isSingleFileOutput)
105+
if (!isSingleFileOutput)
106106
{
107107
if (localizableStrings.Values.Any())
108108
{

0 commit comments

Comments
 (0)