Skip to content

Commit

Permalink
Merge pull request #112 from tmenier/fix_build
Browse files Browse the repository at this point in the history
Fix build - AppVeyor can not press key =)
  • Loading branch information
tmenier authored Jul 10, 2016
2 parents e49d18e + b8ad9a6 commit d09ab7a
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/Flurl.Http.CodeGen/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ static int Main(string[] args) {
if (!File.Exists(codePath)) {
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("Code file not found: " + Path.GetFullPath(codePath));
Console.ReadLine();
return 2;
}

Expand Down Expand Up @@ -47,13 +46,11 @@ static int Main(string[] args) {
}

Console.WriteLine("File writing succeeded.");
Console.ReadLine();
return 0;
}
catch (Exception ex) {
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine(ex);
Console.ReadLine();
return 2;
}
}
Expand Down

0 comments on commit d09ab7a

Please sign in to comment.