Skip to content
This repository has been archived by the owner on Jan 28, 2020. It is now read-only.

Commit

Permalink
fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
architdate committed Mar 13, 2019
1 parent 0266487 commit 8b99808
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CoreConsole/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ static void Main(string[] args)
File.WriteAllBytes($".\\output\\{output}", alm.GetLegalPKM().DecryptedBoxData);
} else
{
string output = GetOutputPath(args)
File.WriteAllBytes($".\\output\\{output}", alm.GetLegalPKM().DecryptedBoxData);
string output = GetOutputPath(args);
File.WriteAllBytes($".\\output\\{output}", alm.GetLegalPKM().DecryptedBoxData);
}
}
else Console.WriteLine("Invalid version");
Expand Down

0 comments on commit 8b99808

Please sign in to comment.