Commit baf1299 1 parent b80bc8e commit baf1299 Copy full SHA for baf1299
File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
2
2
#
3
3
# PoshRSJob
4
- # Version 1.7.3.1
4
+ # Version 1.7.3.2
5
5
#
6
6
# Boe Prox (c) 2014
7
7
# http://learn-powershell.net
14
14
ModuleToProcess = ' PoshRSJob.psm1'
15
15
16
16
# Version number of this module.
17
- ModuleVersion = ' 1.7.3.1 '
17
+ ModuleVersion = ' 1.7.3.2 '
18
18
19
19
# ID used to uniquely identify this module
20
20
GUID = ' 9b17fb0f-e939-4a5c-b194-3f2247452972'
Original file line number Diff line number Diff line change 15
15
{
16
16
Switch ($Stream ) {
17
17
" 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 ($_ )} }
19
19
" Warning" { $IndividualJob | Select - ExpandProperty Warning | ForEach { $host.ui.WriteWarningLine ($_ ) } }
20
20
" Error" { $IndividualJob.Error.Exception | Select - ExpandProperty Message | ForEach {$host.ui.WriteErrorLine ($_ )} }
21
21
" Output" { $IndividualJob | Select - ExpandProperty Output }
You can’t perform that action at this time.
0 commit comments