diff options
author | Joey Hess <joey@kitenet.net> | 2012-11-11 00:51:07 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-11-11 00:51:07 -0400 |
commit | 264bd9ebe37855d4005022df057da13ec8080afb (patch) | |
tree | f32f13646ece29c8f6336b8680cb07dd55187be5 /git-annex.hs | |
parent | d9f5cc9f73ea046fcd2b59b5e75d4600593ac05b (diff) |
where indenting
Diffstat (limited to 'git-annex.hs')
-rw-r--r-- | git-annex.hs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/git-annex.hs b/git-annex.hs index f5f2f22d7..60ed6c15e 100644 --- a/git-annex.hs +++ b/git-annex.hs @@ -13,9 +13,9 @@ import qualified GitAnnexShell main :: IO () main = run =<< getProgName - where - run n - | isshell n = go GitAnnexShell.run - | otherwise = go GitAnnex.run - isshell n = takeFileName n == "git-annex-shell" - go a = a =<< getArgs + where + run n + | isshell n = go GitAnnexShell.run + | otherwise = go GitAnnex.run + isshell n = takeFileName n == "git-annex-shell" + go a = a =<< getArgs |