Skip to content

Commit

Permalink
Remove redundant .exe from FindProgram Exception
Browse files Browse the repository at this point in the history
  • Loading branch information
RaeesBhatti committed Oct 24, 2016
1 parent 26d3bb9 commit 860e172
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ static string FindProgram(string name)
{
return (string)Where.StandardOutput.ReadLine();
}
throw new Exception(name + ".exe was not found in %PATH%");
throw new Exception(name + " was not found in %PATH%");
}
catch (Exception e)
{
Expand Down

0 comments on commit 860e172

Please sign in to comment.