Skip to content

Commit

Permalink
Fix PSScriptAnalyzer issues
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronparker committed Feb 18, 2024
1 parent bb4f52f commit 44f74fc
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions Evergreen/Apps/Get-AdobeDigitalEditions.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Function Get-AdobeDigitalEditions {
E-mail: [email protected]
#>
[OutputType([System.Management.Automation.PSObject])]
[Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSUseSingularNouns", "", Justification="Product name is a plural")]
[CmdletBinding(SupportsShouldProcess = $False)]
param (
[Parameter(Mandatory = $False, Position = 0)]
Expand Down
1 change: 0 additions & 1 deletion Evergreen/Apps/Get-CitrixShareFile.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
.NOTES
Author: Tschuegy
Twitter:
#>
[OutputType([System.Management.Automation.PSObject])]
[CmdletBinding(SupportsShouldProcess = $false)]
Expand Down
2 changes: 1 addition & 1 deletion Evergreen/Apps/Get-ClarivateEndnote.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function Get-ClarivateEndNote {
Write-Verbose -Message "$($MyInvocation.MyCommand): Download URL: $($res.Get.Download.Uri.$Release)"

# Query the EndNote update API
$UpdateFeed = Invoke-EvergreenRestMethod -Uri $res.Get.Update.Uri.($Release)
$UpdateFeed = Invoke-EvergreenRestMethod -Uri $res.Get.Update.Uri.($Release)
if ($null -ne $UpdateFeed) {

# Sort the updates to find the latest
Expand Down

0 comments on commit 44f74fc

Please sign in to comment.