Skip to content

Commit

Permalink
Fix a bug, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Glatzer committed Oct 24, 2023
1 parent 96be441 commit 2680a96
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ACME-PS/ACME-PS.psd1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@{
RootModule = 'ACME-PS.psm1'
ModuleVersion = '1.5.4'
ModuleVersion = '1.5.6'
GUID = '2DBF7E3F-F830-403A-9300-78A11C7CD00C'

CompatiblePSEditions = @("Core", "Desktop")
Expand Down
2 changes: 1 addition & 1 deletion ACME-PS/internal/classes/crypto/Certificate.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class Certificate {
# Find the root-most certificate
$currentCert = $acmeCertificates |
Where-Object { !$_.Issuer -or $_.Issuer -eq $_.Subject -or !$map.ContainsKey($_.Issuer) } |
Select-Object -First;
Select-Object -First 1;

$result.Add($currentCert);

Expand Down
6 changes: 5 additions & 1 deletion dist/ACME-PS/ACME-PS.psd1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@{
RootModule = 'ACME-PS.psm1'
ModuleVersion = '1.5.3'
ModuleVersion = '1.5.6'
GUID = '2DBF7E3F-F830-403A-9300-78A11C7CD00C'

CompatiblePSEditions = @("Core", "Desktop")
Expand Down Expand Up @@ -64,6 +64,10 @@

"Invoke-SignedWebRequest"
)
CmdletsToExport = @()
VariablesToExport = @()
AliasesToExport = @()
DscResourcesToExport = @()

# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
PrivateData = @{
Expand Down
2 changes: 1 addition & 1 deletion dist/ACME-PS/ACME-PS.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ class Certificate {
# Find the root-most certificate
$currentCert = $acmeCertificates |
Where-Object { !$_.Issuer -or $_.Issuer -eq $_.Subject -or !$map.ContainsKey($_.Issuer) } |
Select-Object -First;
Select-Object -First 1;

$result.Add($currentCert);

Expand Down

0 comments on commit 2680a96

Please sign in to comment.