diff options
Diffstat (limited to 'Command/Lock.hs')
-rw-r--r-- | Command/Lock.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Command/Lock.hs b/Command/Lock.hs index cdbc56019..1ae488227 100644 --- a/Command/Lock.hs +++ b/Command/Lock.hs @@ -26,7 +26,7 @@ seek = [withFilesUnlocked start] start :: CommandStartBackendFile start (file, _) = do showStart "lock" file - return $ Just $ perform file + next $ perform file perform :: FilePath -> CommandPerform perform file = do @@ -36,4 +36,4 @@ perform file = do liftIO $ Git.run g "reset" [Params "-q --", File file] -- checkout the symlink liftIO $ Git.run g "checkout" [Param "--", File file] - return $ Just $ return True -- no cleanup needed + next $ return True -- no cleanup needed |