Skip to content

Commit 630db66

Browse files
committed
rebase
1 parent 2087bcc commit 630db66

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/chocolatey/infrastructure.app/services/NugetService.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ it is possible that incomplete package lists are returned from a command
194194

195195
ChocolateyPackageMetadata packageLocalMetadata;
196196
string packageInstallLocation = null;
197-
string softwareInstallLocation = null;
197+
string deploymentLocation = null;
198198
if (package.PackagePath != null && !string.IsNullOrWhiteSpace(package.PackagePath))
199199
{
200200
packageLocalMetadata = new ChocolateyPackageMetadata(package.PackagePath, _fileSystem);
@@ -216,7 +216,7 @@ it is possible that incomplete package lists are returned from a command
216216
}
217217
}
218218

219-
softwareInstallLocation = packageInfo.SoftwareInstallLocation;
219+
deploymentLocation = packageInfo.DeploymentLocation;
220220
}
221221

222222
if (!config.QuietOutput)
@@ -278,7 +278,7 @@ Package url{6}
278278
package.Summary != null && !string.IsNullOrWhiteSpace(package.Summary.ToStringSafe()) ? "\r\n Summary: {0}".FormatWith(package.Summary.EscapeCurlyBraces().ToStringSafe()) : string.Empty,
279279
package.Description.EscapeCurlyBraces().Replace("\n ", "\n").Replace("\n", "\n "),
280280
!string.IsNullOrWhiteSpace(package.ReleaseNotes.ToStringSafe()) ? "{0} Release Notes: {1}".FormatWith(Environment.NewLine, package.ReleaseNotes.EscapeCurlyBraces().Replace("\n ", "\n").Replace("\n", "\n ")) : string.Empty,
281-
!string.IsNullOrWhiteSpace(softwareInstallLocation) ? "{0} Software installed to: '{1}'".FormatWith(Environment.NewLine, softwareInstallLocation) : string.Empty
281+
!string.IsNullOrWhiteSpace(deploymentLocation) ? "{0} Deployed to: '{1}'".FormatWith(Environment.NewLine, deploymentLocation) : string.Empty
282282
));
283283
}
284284
}

0 commit comments

Comments
 (0)