Skip to content

Commit

Permalink
Removed docstring for Robocopy step.
Browse files Browse the repository at this point in the history
All usage information is only in the documentation page now.
  • Loading branch information
ludovicchabant committed Jul 3, 2013
1 parent f303219 commit 41f865f
Showing 1 changed file with 2 additions and 24 deletions.
26 changes: 2 additions & 24 deletions master/buildbot/steps/mswin.py
Expand Up @@ -23,30 +23,8 @@
class Robocopy(ShellCommand):
""" Robocopy build step.
Note that parameters `/TEE /UNICODE /NP` will always be appended to the
command to signify, respectively, to output logging to the console, use
Unicode logging, and not print any percentage progress information for
each file.
@ivar source: the path to the source directory.
@ivar destination: the path to the destination directory.
@ivar files: an array of file names or patterns to copy.
@ivar recursive: copy files and directories recursively (`/E` parameter).
@ivar mirror: mirror the source directory in the destination directory,
including removing files that don't exist anymore (`/MIR` parameter).
@ivar move: delete the source directory after the copy is complete
(`/MOVE` parameter).
@ivar exclude: an array of file names or patterns to exclude from the copy
(`/XF` parameter).
@ivar verbose: whether to output verbose information
(`/V /TS /TP` parameters).
This is just a wrapper around the standard shell command that
will handle arguments and return codes accordingly for Robocopy.
"""
renderables = ['source', 'destination', 'files', 'exclude']

Expand Down

0 comments on commit 41f865f

Please sign in to comment.