Skip to content

Commit baf1299

Browse files
committed
Updates
1 parent b80bc8e commit baf1299

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

PoshRSJob/PoshRSJob.psd1

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
#
33
# PoshRSJob
4-
# Version 1.7.3.1
4+
# Version 1.7.3.2
55
#
66
# Boe Prox (c) 2014
77
# http://learn-powershell.net
@@ -14,7 +14,7 @@
1414
ModuleToProcess = 'PoshRSJob.psm1'
1515

1616
# Version number of this module.
17-
ModuleVersion = '1.7.3.1'
17+
ModuleVersion = '1.7.3.2'
1818

1919
# ID used to uniquely identify this module
2020
GUID = '9b17fb0f-e939-4a5c-b194-3f2247452972'

PoshRSJob/Private/WriteStream.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
{
1616
Switch ($Stream) {
1717
"Verbose" { $IndividualJob | Select -ExpandProperty Verbose | ForEach { $host.ui.WriteVerboseLine($_)} }
18-
"Debug" { $IndividualJob | Select -ExpandProperty Verbose | ForEach { $host.ui.WriteDebugLine($_)} }
18+
"Debug" { $IndividualJob | Select -ExpandProperty Debug | ForEach { $host.ui.WriteDebugLine($_)} }
1919
"Warning" { $IndividualJob | Select -ExpandProperty Warning | ForEach { $host.ui.WriteWarningLine($_) } }
2020
"Error" { $IndividualJob.Error.Exception | Select -ExpandProperty Message | ForEach {$host.ui.WriteErrorLine($_)} }
2121
"Output" { $IndividualJob | Select -ExpandProperty Output }

0 commit comments

Comments
 (0)