src/Pure/General/mercurial.scala
changeset 77795 4c4bd44ff683
parent 77792 b81b2c50fc7c
child 77852 df35b5b7b6a4
equal deleted inserted replaced
77794:89e4971df810 77795:4c4bd44ff683
   606             case Some(dir) => repository(dir)
   606             case Some(dir) => repository(dir)
   607             case None => the_repository(Path.current)
   607             case None => the_repository(Path.current)
   608           }
   608           }
   609 
   609 
   610         using(SSH.open_system(options, host = ssh_host, port = ssh_port, user = ssh_user)) { ssh =>
   610         using(SSH.open_system(options, host = ssh_host, port = ssh_port, user = ssh_user)) { ssh =>
   611           val context = Rsync.Context(progress = progress, ssh = ssh)
   611           val context = Rsync.Context(progress = progress, ssh = ssh, stats = verbose)
   612           hg.sync(context, target, thorough = thorough, dry_run = dry_run,
   612           hg.sync(context, target, thorough = thorough, dry_run = dry_run,
   613             filter = filter, rev = rev)
   613             filter = filter, rev = rev)
   614         }
   614         }
   615       }
   615       }
   616     )
   616     )