The last release accidentially removed a number of options from the copy command. (-J, file matching options, etc). These have been added back.

This commit is contained in:
Joey Hess 2015-07-30 13:33:35 -04:00
parent 506452012c
commit b7a5d9c3e1
2 changed files with 7 additions and 3 deletions

View file

@ -15,9 +15,10 @@ import Annex.Wanted
import Annex.NumCopies
cmd :: Command
cmd = command "copy" SectionCommon
"copy content of files to/from another repository"
paramPaths (seek <--< optParser)
cmd = withGlobalOptions (jobsOption : annexedMatchingOptions) $
command "copy" SectionCommon
"copy content of files to/from another repository"
paramPaths (seek <--< optParser)
data CopyOptions = CopyOptions
{ moveOptions :: Command.Move.MoveOptions