Skip to content

Commit

Permalink
resolve scalastyle problem
Browse files Browse the repository at this point in the history
  • Loading branch information
Emor-nj committed Jun 29, 2022
1 parent 9a74ab1 commit e6762d5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class RsyncFileTransfer(host: String) extends FileTransfer {

try {
// we use sshpass to support non-interactive password authentication
val sshParameter = if(password!=null) s"sshpass -p $password ssh -o StrictHostKeyChecking=no -p 22" else "ssh -o StrictHostKeyChecking=no -p 22"
val sshParameter = if (password!=null) s"sshpass -p $password ssh -o StrictHostKeyChecking=no -p 22" else "ssh -o StrictHostKeyChecking=no -p 22"
val exec = mutable.ListBuffer[String]()
exec.append("rsync")
// recursive
Expand Down

0 comments on commit e6762d5

Please sign in to comment.