Coming from powershell scripting, every string is put in quotes and to be printed strings with variables are put in $($var) (e.g. Write-Host "Example-Issue: $($IssueVariable)")
Saves me the trouble of hoping that $($IssueVariable) isnt interpreted as a string by PowerShell.
Coming from powershell scripting, every string is put in quotes and to be printed strings with variables are put in
$($var)(e.g.Write-Host "Example-Issue: $($IssueVariable)")Saves me the trouble of hoping that
$($IssueVariable)isnt interpreted as a string by PowerShell.