Skip to content

Commit

Permalink
Merge pull request #22 from KevinMarquette/develop !Deploy
Browse files Browse the repository at this point in the history
Fixed alias
  • Loading branch information
KevinMarquette committed Feb 21, 2017
2 parents c93ea45 + 9166bc4 commit 704684a
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 704684a

Please sign in to comment.