diff options
author | Joey Hess <joey@kitenet.net> | 2012-03-01 22:35:10 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-03-01 22:35:10 -0400 |
commit | 1098bc37ab2aea2510ef41f9d9f6a6909b252cdd (patch) | |
tree | 5b33cd5dee712d71d3df0fdc20f5208ee1eed907 /Command/Unused.hs | |
parent | 478fdc8a5d8b87b6ccbdff61e1e2e88032d34b48 (diff) |
"here" can be used to refer to the current repository, which can read better than the old "." (which still works too).
Diffstat (limited to 'Command/Unused.hs')
-rw-r--r-- | Command/Unused.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Command/Unused.hs b/Command/Unused.hs index 58a99882e..bbef835f7 100644 --- a/Command/Unused.hs +++ b/Command/Unused.hs @@ -48,6 +48,7 @@ start = do let (name, action) = case from of Nothing -> (".", checkUnused) Just "." -> (".", checkUnused) + Just "here" -> (".", checkUnused) Just n -> (n, checkRemoteUnused n) showStart "unused" name next action |