Skip to content

Commit f18e230

Browse files
authored
[Ignore] Fix system details expression in bug report
1 parent b6972a7 commit f18e230

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

.github/ISSUE_TEMPLATE/Bug_report.md

+2-8
Original file line numberDiff line numberDiff line change
@@ -33,18 +33,12 @@ To help diagnose your issue, the following details are helpful:
3333
3434
To get this information, run the following expression in your Integrated Console and paste the output here inside the backticks below:
3535
36-
& {"### VSCode version: $(code -v)"
37-
"`n### VSCode extensions:`n$(code --list-extensions --show-versions | Out-String)"
38-
"`n### PSES version: $($pseditor.EditorServicesVersion)"
39-
"`n### PowerShell version:`n$($PSVersionTable | Out-String)"}
36+
& {"### VSCode version: $(code -v)"; "`n### VSCode extensions:`n$(code --list-extensions --show-versions | Out-String)"; "`n### PSES version: $($pseditor.EditorServicesVersion)"; "`n### PowerShell version:`n$($PSVersionTable | Out-String)"}
4037
4138
4239
If you are running VSCode Insiders, use this expression instead (and paste the result inside the backticks):
4340
44-
& {"### VSCode version: $(code-insiders -v)"
45-
"`n### VSCode extensions:`n$(code-insiders --list-extensions --show-versions | Out-String)"
46-
"`n### PSES version: $($pseditor.EditorServicesVersion)"
47-
"`n### PowerShell version:`n$($PSVersionTable | Out-String)"}
41+
& {"### VSCode version: $(code-insiders -v)"; "`n### VSCode extensions:`n$(code-insiders --list-extensions --show-versions | Out-String)"; "`n### PSES version: $($pseditor.EditorServicesVersion)"; "`n### PowerShell version:`n$($PSVersionTable | Out-String)"}
4842
4943
-->
5044

0 commit comments

Comments
 (0)