Skip to content
This repository has been archived by the owner on Jul 1, 2024. It is now read-only.

Adds LP to LiteralPath aliases #147

Open
wants to merge 1 commit into
base: servicing
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ function Compress-Archive
[parameter (mandatory=$true, ParameterSetName="LiteralPathWithForce", ValueFromPipeline=$false, ValueFromPipelineByPropertyName=$true)]
[parameter (mandatory=$true, ParameterSetName="LiteralPathWithUpdate", ValueFromPipeline=$false, ValueFromPipelineByPropertyName=$true)]
[ValidateNotNullOrEmpty()]
[Alias("PSPath")]
[Alias("PSPath", "LP")]
[string[]] $LiteralPath,

[parameter (mandatory=$true,
Expand Down Expand Up @@ -269,7 +269,7 @@ function Expand-Archive
ParameterSetName="LiteralPath",
ValueFromPipelineByPropertyName=$true)]
[ValidateNotNullOrEmpty()]
[Alias("PSPath")]
[Alias("PSPath", "LP")]
[string] $LiteralPath,

[parameter (mandatory=$false,
Expand Down