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