Skip to content

Commit

Permalink
Update InstallHelper.cs (#1510)
Browse files Browse the repository at this point in the history
  • Loading branch information
NextGData authored and alerickson committed Feb 5, 2024
1 parent 8113b86 commit f4680a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/code/InstallHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1338,8 +1338,8 @@ private bool CallAcceptLicense(PSResourceInfo p, string moduleManifest, string t

// Otherwise read LicenseFile
string licenseText = System.IO.File.ReadAllText(LicenseFilePath);
var acceptanceLicenseQuery = $"Do you accept the license terms for module '{p.Name}'.";
var message = licenseText + "`r`n" + acceptanceLicenseQuery;
var acceptanceLicenseQuery = $"Do you accept the license terms for module '{p.Name}'?";
var message = licenseText + "\r\n" + acceptanceLicenseQuery;

var title = "License Acceptance";
var yesToAll = false;
Expand Down

0 comments on commit f4680a2

Please sign in to comment.