Skip to content

Commit 7d1f712

Browse files
author
Adam Warner
committed
logic was reversed in refactor, however the ! was missed.
1 parent 0dfef84 commit 7d1f712

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ManualTests/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ public static void PostUsersMenuMessage(Config config)
255255
public static Config LoadConfig()
256256
{
257257
var configFile = "config.json";
258-
if (File.Exists(configFile))
258+
if (! File.Exists(configFile))
259259
{
260260
Console.WriteLine("No Config file found, make sure it exists first");
261261
Environment.Exit(1);

0 commit comments

Comments
 (0)