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

Fix broken -Quiet parameter for Save-PSResource #1743

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/code/SavePSResource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -161,14 +161,14 @@ public string TemporaryPath

/// <summary>
/// Check validation for signed and catalog files

/// </summary>
[Parameter]
public SwitchParameter AuthenticodeCheck { get; set; }

/// <summary>
/// Suppresses progress information.
/// </summary>
[Parameter]
public SwitchParameter Quiet { get; set; }

/// <summary>
Expand Down
6 changes: 6 additions & 0 deletions test/SavePSResourceTests/SavePSResourceLocalTests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -198,4 +198,10 @@ Describe 'Test Save-PSResource for local repositories' -tags 'CI' {
$err.Count | Should -Not -BeNullOrEmpty
$err[0].FullyQualifiedErrorId | Should -BeExactly "InstallPackageFailure,Microsoft.PowerShell.PSResourceGet.Cmdlets.SavePSResource"
}

It "Save module using -Quiet" {
$res = Save-PSResource -Name $moduleName -Version "1.0.0" -Repository $localRepo -Path $SaveDir -PassThru -TrustRepository -Quiet
$res.Name | Should -Be $moduleName
$res.Version | Should -Be "1.0.0"
}
}
Loading