Skip to content

Commit

Permalink
Fixed alias
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinMarquette committed Feb 21, 2017
1 parent c93ea45 commit 9166bc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PSGraph/Public/Export-PSGraph.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ function Export-PSGraph

# Only resolve paths, if there are NO empty string entries in the $Source
# Resolve-path spits out an error with empty string paths, even with SilentlyContinue
if (@($Source | where { [String]::IsNullOrEmpty($_) } ).Count -eq 0)
if (@($Source | Where-Object { [String]::IsNullOrEmpty($_) } ).Count -eq 0)
{
$fileList = Resolve-Path -Path $Source -ErrorAction SilentlyContinue
}
Expand Down

0 comments on commit 9166bc4

Please sign in to comment.