-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixes #61 and adds failing test #62
Conversation
@@ -6,7 +6,7 @@ Import-Module (Join-Path $PSScriptRoot 'ZLocation.Search.psm1') | |||
function Get-ZLocation($Match) | |||
{ | |||
$service = Get-ZService | |||
$hash = @{} | |||
$hash = [Collections.HashTable]::new() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The ability to construct using ::new()
exists only in v5 and higher. Probably better to stick with the PS native syntax to create the hashtable.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, that is how you were creating it with case-sensitive keys. In that case use $hash = New-Object System.Collections.Hashtable
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We're already using ::new()
in some other places:
https://github.com/vors/ZLocation/blob/master/ZLocation/ZLocation.LiteDB.psm1#L4
So if we decide to support pre-v5, we should also investigate running unit tests on pre-v5 and fixing any failures.
Do you think people will use a utility like ZLocation on older versions of PS? For me, it's only useful in my primary interactive console. For example, I can't imagine remoting into an outdated machine and running ZLocation commands.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In that case, the module manifest should declare the PS v5 is the minimum version supported:
# Minimum version of the Windows PowerShell engine required by this module
PowerShellVersion = '5.0'
Or we can replace ::new()
with new-object
to support back to v3. I only use v6.1 these days so I'd be happy to ditch v5.x but I realize that folks use other versions of PS. :-)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good point @rkeithhill
Let's track it as a separate item #64
In cases when two paths differ only by capitalization, we need to keep both in the DB in case the filesystem is case-sensitive.
I suppose we could opt to remove duplicates on Windows; keep them on Mac and Linux? But this fix was easier.