Skip to content

Commit

Permalink
Fix version
Browse files Browse the repository at this point in the history
  • Loading branch information
erri120 committed Jul 11, 2024
1 parent 4809df7 commit b30d3be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions scripts/download-codesigntool.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ $ProgressPreference = 'SilentlyContinue' #'Continue

$rootDir = Resolve-Path "."

# Make sure to updated the version in sign.ps1 as well
# https://github.com/SSLcom/CodeSignTool/releases
$downloadUrl = "https://github.com/SSLcom/CodeSignTool/releases/download/v1.3.0/CodeSignTool-v1.3.0-windows.zip"
$downloadedFile = Join-Path $rootDir "CodeSignTool.zip"
Expand Down
2 changes: 1 addition & 1 deletion scripts/sign.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ TestDirectory($codeSignToolDir)
$javaPath = Join-Path -Path $codeSignToolDir -ChildPath "jdk-11.0.2" | Join-Path -ChildPath "bin" | Join-Path -ChildPath "java.exe"
TestFile($javaPath)

$jarPath = Join-Path -Path $codeSignToolDir -ChildPath "jar" | Join-Path -ChildPath "code_sign_tool-1.3.1.jar"
$jarPath = Join-Path -Path $codeSignToolDir -ChildPath "jar" | Join-Path -ChildPath "code_sign_tool-1.3.0.jar"
TestFile($jarPath)

# CodeSignTool requires user interaction to confirm an overwrite of the original file.
Expand Down

0 comments on commit b30d3be

Please sign in to comment.