Skip to content
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

Merged
merged 2 commits into from
Sep 20, 2018
Merged

Fixes #61 and adds failing test #62

merged 2 commits into from
Sep 20, 2018

Conversation

cspotcode
Copy link
Contributor

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.

@@ -6,7 +6,7 @@ Import-Module (Join-Path $PSScriptRoot 'ZLocation.Search.psm1')
function Get-ZLocation($Match)
{
$service = Get-ZService
$hash = @{}
$hash = [Collections.HashTable]::new()
Copy link
Contributor

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.

Copy link
Contributor

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.

Copy link
Contributor Author

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.

Copy link
Contributor

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. :-)

Copy link
Owner

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

@vors vors merged commit 2f19cf9 into vors:master Sep 20, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants