Skip to content

Commit

Permalink
Removed trailing dot in survey message (#379)
Browse files Browse the repository at this point in the history
Removed the trailing dot in survey message to address URL wrapping issue in CloudShell

Co-authored-by: NanxiangLiu <[email protected]>
  • Loading branch information
dcaro and Nickcandy authored Apr 13, 2023
1 parent dddabb8 commit dc4939e
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/Common/AzurePSCmdlet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -467,17 +467,11 @@ protected void WriteSurvey()
Message = ansiCodePrefix + "https://go.microsoft.com/fwlink/?linkid=2202892"+ ansiCodeSuffix,
NoNewLine = true,
};
HostInformationMessage dot = new HostInformationMessage()
{
Message = ansiCodePrefix + "."+ ansiCodeSuffix,
NoNewLine = true,
};
WriteInformation(newLine, new string[] { "PSHOST" });
WriteInformation(howWas, new string[] { "PSHOST" });
WriteInformation(link, new string[] { "PSHOST" });
WriteInformation(action, new string[] { "PSHOST" });
WriteInformation(website, new string[] { "PSHOST" });
WriteInformation(dot, new string[] { "PSHOST" });
WriteInformation(newLine, new string[] { "PSHOST" });


Expand Down

0 comments on commit dc4939e

Please sign in to comment.