Skip to content

Commit

Permalink
(chocolateyGH-557) Add newline preceding the newer version available …
Browse files Browse the repository at this point in the history
…message.
  • Loading branch information
eeevans committed Jun 2, 2016
1 parent 23379b7 commit 6346a52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/chocolatey/infrastructure.app/services/NugetService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -647,7 +647,7 @@ public ConcurrentDictionary<string, PackageResult> upgrade_run(ChocolateyConfigu

if (installedPackage.Version == availablePackage.Version)
{
string logMessage = "{0} v{1} is the latest version available based on your source(s).".format_with(installedPackage.Id, installedPackage.Version);
string logMessage = "{0}{1} v{2} is the latest version available based on your source(s).".format_with(Environment.NewLine, installedPackage.Id, installedPackage.Version);

if (!config.Force)
{
Expand Down

0 comments on commit 6346a52

Please sign in to comment.