Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
EyalDelarea committed Nov 14, 2024
1 parent 7a2bab0 commit ac5b3b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/io/jenkins/plugins/jfrog/JfStep.java
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ private void logIllegalBuildPublishOutput(Log log, ByteArrayOutputStream taskOut
private void initClassValues(FilePath workspace, EnvVars env, Launcher launcher) throws IOException, InterruptedException {
this.isWindows = !launcher.isUnix();
this.jfrogBinaryPath = getJFrogCLIPath(env, isWindows);
this.passwordStdinSupported = isPasswordStdSupported(workspace, env, launcher);
this.passwordStdinSupported = isPasswordStdinSupported(workspace, env, launcher);
}

@Symbol("jf")
Expand Down Expand Up @@ -370,7 +370,7 @@ Version getJfrogCliVersion(Launcher.ProcStarter launcher) throws IOException, In
* @param launcher The command launcher.
* @return true if stdin-based password handling is supported; false otherwise.
*/
public boolean isPasswordStdSupported(FilePath workspace, EnvVars env, Launcher launcher) throws IOException, InterruptedException {
public boolean isPasswordStdinSupported(FilePath workspace, EnvVars env, Launcher launcher) throws IOException, InterruptedException {
// Determine if the launcher is a plugin (custom) launcher
boolean isPluginLauncher = launcher.getClass().getName().contains("org.jenkinsci.plugins");
if (isPluginLauncher) {
Expand Down

0 comments on commit ac5b3b7

Please sign in to comment.