Skip to content

Commit

Permalink
Merge pull request #24938 from avpinchuk/fix-windows-keytool
Browse files Browse the repository at this point in the history
Fixes keytool executable name on Windows in integration test tools
  • Loading branch information
hs536 committed Apr 24, 2024
2 parents 27e8600 + 5b2d442 commit fd88346
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ private static File findAsadmin() {


private static File findKeyTool() {
return new File(System.getProperty("java.home"), isWindows() ? "bin/keytool.bat" : "bin/keytool");
return new File(System.getProperty("java.home"), isWindows() ? "bin/keytool.exe" : "bin/keytool");
}


Expand Down

0 comments on commit fd88346

Please sign in to comment.