We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1152cf0 commit a477298Copy full SHA for a477298
Commands/Stop-Htmx.ps1
@@ -62,7 +62,7 @@ function Stop-Htmx {
62
if ($job.HttpListener) {
63
$job.HttpListener.Stop()
64
}
65
- $job | Stop-Job
+ $job | Stop-Job -PassThru:$passThru
66
} else {
67
foreach ($existingJob in Get-Job @PSBoundParameters) {
68
if ($existingJob.HttpListener) {
@@ -73,7 +73,7 @@ function Stop-Htmx {
73
74
75
76
- $existingJob | Stop-Job
+ $existingJob | Stop-Job -PassThru:$passThru
77
78
79
0 commit comments