Skip to content

Commit 5b9ad14

Browse files
author
Adam Warner
authored
Merge pull request #20 from PromoFaux/fix/ReverseLogic
logic was reversed in refactor, however the ! was missed.
2 parents 0dfef84 + 7d1f712 commit 5b9ad14

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)