forked from OCram85/PSCredentialStore
Revert this to be in sync with max line length PSScriptAnalyzer rule
This commit is contained in:
parent
c272b30cb4
commit
a5b430e4ae
@ -258,7 +258,9 @@ function Connect-To {
|
|||||||
# Check the Connection State
|
# Check the Connection State
|
||||||
if (-not $WinSCPSession.Opened) {
|
if (-not $WinSCPSession.Opened) {
|
||||||
# Check the connection state and find out if the session is still open.
|
# Check the connection state and find out if the session is still open.
|
||||||
Write-Error -Message ('Connection to {0} using Type {1} was established. But now it seems to be lost!' -f $RemoteHost, $Type)
|
$m = 'Connection to {0} using Type {1} was established. ' -f $RemoteHost, $Type
|
||||||
|
$m += 'But now it seems to be lost!'
|
||||||
|
Write-Error -Message $m
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
'NetAppFAS' {
|
'NetAppFAS' {
|
||||||
@ -317,7 +319,9 @@ function Connect-To {
|
|||||||
# Check the Connection State
|
# Check the Connection State
|
||||||
if (!($WinSCPSession.Opened)) {
|
if (!($WinSCPSession.Opened)) {
|
||||||
# Check the connection state and find out if the session is still open.
|
# Check the connection state and find out if the session is still open.
|
||||||
Write-Error -Message ('Connection to {0} using Type {1} was established. But now it seems to be lost!' -f $RemoteHost, $Type)
|
$m = 'Connection to {0} using Type {1} was established. ' -f $RemoteHost, $Type
|
||||||
|
$m += 'But now it seems to be lost!'
|
||||||
|
Write-Error -Message $m
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
default {
|
default {
|
||||||
|
Loading…
Reference in New Issue
Block a user