Skip to content
This repository has been archived by the owner on Nov 22, 2024. It is now read-only.

Fixed for powershell core #18

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion SvnUtils.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ function Get-SvnStatus($svnDir = (Get-SvnDirectory)) {

# EnableRemoteStatus: defaults to true
$showRemote = (-not $settings) -or $settings.EnableRemoteStatus
if ($showRemote -and (Test-Connection -computername $hostName -Quiet -Count 1 -BufferSize 1)) {
if ($showRemote -and (Test-Connection -computername $hostName -Quiet -Count 1 -BufferSize 1 -InformationAction Ignore)) {
$statusArgs += '--show-updates'
}

Expand Down
2 changes: 1 addition & 1 deletion posh-svn.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
ModuleToProcess = 'posh-svn.psm1'

# Version number of this module.
ModuleVersion = '0.7.0'
ModuleVersion = '0.7.1'

# ID used to uniquely identify this module
GUID = 'f18820b6-2e02-41b4-afc5-de886bb1b848'
Expand Down