avoid commits when running fix and find

This commit is contained in:
Joey Hess 2012-11-24 17:58:16 -04:00
parent 228ebbb647
commit 0ab05c32c8
2 changed files with 2 additions and 2 deletions

View file

@ -20,7 +20,7 @@ import Types.Key
import qualified Option
def :: [Command]
def = [withOptions [formatOption, print0Option] $
def = [noCommit $ withOptions [formatOption, print0Option] $
command "find" paramPaths seek "lists available files"]
formatOption :: Option

View file

@ -13,7 +13,7 @@ import qualified Annex.Queue
import Annex.Content
def :: [Command]
def = [command "fix" paramPaths seek
def = [noCommit $ command "fix" paramPaths seek
"fix up symlinks to point to annexed content"]
seek :: [CommandSeek]