Skip to content

Commit 63d2413

Browse files
committed
Fix a stupid error.
1 parent e86126d commit 63d2413

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/QSP/Updates/Utilities.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public static bool ShouldShowLicense()
5959

6060
// This is required because the installer may write files with
6161
// "\r\n" newlines instead of the original "\n".
62-
return File.ReadAllText(prevTxt).EqualsIgnoreNewlineStyle(
62+
return !File.ReadAllText(prevTxt).EqualsIgnoreNewlineStyle(
6363
File.ReadAllText("LICENSE.txt"));
6464
}
6565
catch (Exception ex)

0 commit comments

Comments
 (0)