Skip to content

Commit

Permalink
keystore default in installer
Browse files Browse the repository at this point in the history
  • Loading branch information
voxparcxls committed Nov 14, 2023
1 parent 98aa090 commit 526d78d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cws-installer/src/main/java/jpl/cws/task/CwsInstaller.java
Original file line number Diff line number Diff line change
Expand Up @@ -1068,10 +1068,10 @@ private static void setupKeystorePassword() {

if (cws_installer_mode.equals("interactive")) {
if (cws_keystore_storepass == null) {
cws_keystore_storepass = readRequiredLine("Enter the Keystore password of .keystore ",
cws_keystore_storepass = readRequiredLine("Enter the Keystore password of .keystore. ",
"Must specify a Keystore password!");
} else {
cws_keystore_storepass = readLine("Enter the Keystore password of .keystore " +
cws_keystore_storepass = readLine("Enter the Keystore password of .keystore. " +
"Default is " + cws_keystore_storepass + ": ", cws_keystore_storepass);
}
} else {
Expand Down

0 comments on commit 526d78d

Please sign in to comment.