Skip to content

Commit

Permalink
Update Program.cs
Browse files Browse the repository at this point in the history
Quick logical fix.
  • Loading branch information
Mateos81 authored Apr 6, 2017
1 parent 2368bbc commit f66e8e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions KFTempArchiveExtractor/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public static void Main(string[] args)
Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location),
"KF Archive Files");

if (Directory.Exists(_baseExtractionPath))
if (!Directory.Exists(_baseExtractionPath))
{
Directory.CreateDirectory(_baseExtractionPath);
}
Expand Down Expand Up @@ -238,4 +238,4 @@ private static void ProcessOverPausing()

#endregion Methods
}
}
}

0 comments on commit f66e8e1

Please sign in to comment.