Skip to content

Commit

Permalink
v2.1.3. Fix bug in Invoke-SshCommand
Browse files Browse the repository at this point in the history
Invoke-SshCommand no longer terminates calling scripts when used with -InvokeOnAll and an empty SSH client store/pool.
  • Loading branch information
EliteLoser authored Feb 26, 2018
1 parent 59ea083 commit 2255f06
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions SSHSessions.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,19 @@
# v2.1.1 - Fix a bug that caused the calling scripts to terminate when
# Get-SshSession and Remove-SshSession -RemoveAll were called (tested on PS v5.1).
# Worked around.
# v2.1.2 - Fix bug with two -ErrorAction Stop calls when using a key password and not
# v2.1.2 - Fix bug with two -ErrorAction Stop calls when using a key password not
# in a credentials object. Syntax error for that scenario.
# v2.1.3 - Fix so Invoke-SshCommand -InvokeOnAll no longer terminates calling scripts when
# there are no computers in the store.


@{

# Script module or binary module file associated with this manifest.
RootModule = 'SSHSessions.psm1'

# Version number of this module.
ModuleVersion = '2.1.2'
ModuleVersion = '2.1.3'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down Expand Up @@ -125,8 +128,7 @@ PrivateData = @{
# IconUri = ''

# ReleaseNotes of this module
ReleaseNotes = '# v2.1.2. Fix bug with two -ErrorAction Stop calls when using a key password not
in a credentials object. Syntax error for that scenario.'
ReleaseNotes = '# Fix so Invoke-SshCommand -InvokeOnAll no longer terminates calling scripts when there are no computers in the store.'

# External dependent modules of this module
# ExternalModuleDependencies = ''
Expand Down

0 comments on commit 2255f06

Please sign in to comment.