Skip to content

Commit

Permalink
fix path errors
Browse files Browse the repository at this point in the history
  • Loading branch information
james-garriss committed Dec 24, 2024
1 parent 3bfe37a commit ce7096d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions Testing/workflow/Build-SignRelease.Tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@

Describe "Sign Module Check" {
It "Bad key vault URL should be handled gracefully" {
# Source the function.
. repo/utils/workflow/Build-SignRelease.ps1
$ScriptPath = Join-Path -Path $PSScriptRoot -ChildPath '../../utils/workflow/Build-SignRelease.ps1' -Resolve
# Source the function
. $ScriptPath

New-ModuleSignature `
-AzureKeyVaultUrl "https://www.cisa.gov" `
-CertificateName "certificate name" `
Expand Down
2 changes: 1 addition & 1 deletion Testing/workflow/Install-AzureSignTool.Tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ BeforeDiscovery {
$ScriptPath = Join-Path -Path $PSScriptRoot -ChildPath '../../utils/workflow/Build-SignRelease.ps1' -Resolve
# Source the function
. $ScriptPath
Install-AzureSigningTool
Install-AzureSignTool
}

Describe "AST Check" {
Expand Down

0 comments on commit ce7096d

Please sign in to comment.