PSBlitz icon indicating copy to clipboard operation
PSBlitz copied to clipboard

Replace path string concatenations with Join-Path

Open VladDBA opened this issue 5 months ago • 0 comments

From this

$ResourcesPath = $ScriptPath + "\Resources"

To this

$ResourcesPath = Join-Path -Path $ScriptPath -ChildPath "Resources"

This may or may not be related to possible work towards Linux compatibility.

VladDBA avatar Sep 05 '24 19:09 VladDBA