summaryrefslogtreecommitdiff
path: root/Command/Smudge.hs
blob: 22f9efd696136eedc084e46b3df718946fd7a80b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{- git-annex command
 -
 - Copyright 2015 Joey Hess <id@joeyh.name>
 -
 - Licensed under the GNU GPL version 3 or higher.
 -}

module Command.Smudge where

import Common.Annex
import Command
import Annex.Content
import Annex.Link
import Git.Types

cmd :: Command
cmd = dontCheck repoExists $
	command "smudge" SectionPlumbing 
		"git smudge filter"
		paramFile (withParams seek)

seek :: CmdParams -> CommandSeek
seek = withWords start

start :: [String] -> CommandStart
start [file] = do
	error ("smudge " ++ file)
start [] = error "smudge filter run without filename; upgrade git"
start _ = error "smudge filter passed multiple filenames"