Skip to content

Commit

Permalink
Merge pull request #167 from theohbrothers/enhancement/development-st…
Browse files Browse the repository at this point in the history
…andardize-verbose-output-for-vscode-build-tasks

Enhancement (development): Standardize verbose output for vscode build tasks
  • Loading branch information
joeltimothyoh authored Jul 25, 2024
2 parents 68d4339 + f32afd8 commit 6910038
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -136,13 +136,13 @@
{
"label": "Test PSRepositoryReleaseManager (pwsh)",
"type": "shell",
"command": "pwsh -NoLogo -NonInteractive -NoProfile -Command './test/test.ps1'",
"command": "pwsh -NoLogo -NonInteractive -NoProfile -Command '$VerbosePreference = \"Continue\"; ./test/test.ps1'",
"group": "build"
},
{
"label": "Test PSRepositoryReleaseManager (powershell)",
"type": "shell",
"command": "powershell -NoLogo -NonInteractive -NoProfile -Command './test/test.ps1'",
"command": "powershell -NoLogo -NonInteractive -NoProfile -Command '$VerbosePreference = \"Continue\"; ./test/test.ps1'",
"group": "build"
}
]
Expand Down

0 comments on commit 6910038

Please sign in to comment.