Skip to content

Commit

Permalink
Fixes keytool executable name on Windows
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Pinčuk <alexander.v.pinchuk@gmail.com>
  • Loading branch information
avpinchuk committed Apr 23, 2024
1 parent 27e8600 commit 5b2d442
Showing 1 changed file with 1 addition and 1 deletion.
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 5b2d442

Please sign in to comment.