Skip to content

Commit aa1b5d8

Browse files
committed
Minor changes.
1 parent a7bc10a commit aa1b5d8

File tree

1 file changed

+1
-1
lines changed
  • tasks-dsl/src/main/scala/net/codejitsu/tasks

1 file changed

+1
-1
lines changed

tasks-dsl/src/main/scala/net/codejitsu/tasks/Cp.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import net.codejitsu.tasks.dsl._
1818
class Cp[S <: Stage](hosts: Hosts, source: String, destination: String,
1919
params: List[String] = Nil, usingSudo: Boolean = false,
2020
usingPar: Boolean = false, exec: String = "/bin/cp")(implicit user: User, stage: S, rights: S Allow Cp[S])
21-
extends GenericTask("rsync", "copy file(s)", hosts, exec, params ::: List(source, destination),
21+
extends GenericTask("cp", "copy file(s)", hosts, exec, params ::: List(source, destination),
2222
usingSudo, usingPar, taskRepr = s"copy file(s) '${source}' -> '${destination}'") with UsingSudo[Cp[S]] with UsingParallelExecution[Cp[S]] {
2323

2424
override def sudo: Cp[S] = Cp[S](hosts, source, destination, params, true, usingPar, exec)

0 commit comments

Comments
 (0)