summaryrefslogtreecommitdiff
path: root/Command.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2012-09-15 20:46:38 -0400
committerGravatar Joey Hess <joey@kitenet.net>2012-09-15 20:46:38 -0400
commitba0334116cd8811d49b96cd39dd83e565e0bedb7 (patch)
tree03b269a40b0b629a916f30665ccd1cf969f36589 /Command.hs
parent9a9b4b840e81198b85db72920ac88748ae3e6b6d (diff)
more descriptive name for oneshot
Diffstat (limited to 'Command.hs')
-rw-r--r--Command.hs9
1 files changed, 5 insertions, 4 deletions
diff --git a/Command.hs b/Command.hs
index cbffd39fa..ce45599c8 100644
--- a/Command.hs
+++ b/Command.hs
@@ -8,7 +8,7 @@
module Command (
command,
noRepo,
- oneShot,
+ noCommit,
withOptions,
next,
stop,
@@ -43,9 +43,10 @@ import Annex.CheckAttr
command :: String -> String -> [CommandSeek] -> String -> Command
command = Command [] Nothing commonChecks False
-{- Makes a command run in oneshot mode. -}
-oneShot :: Command -> Command
-oneShot c = c { cmdoneshot = True }
+{- Indicates that a command doesn't need to commit any changes to
+ - the git-annex branch. -}
+noCommit :: Command -> Command
+noCommit c = c { cmdnocommit = True }
{- Adds a fallback action to a command, that will be run if it's used
- outside a git repository. -}