summaryrefslogtreecommitdiff
path: root/Command
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2012-03-01 22:35:10 -0400
committerGravatar Joey Hess <joey@kitenet.net>2012-03-01 22:35:10 -0400
commit1098bc37ab2aea2510ef41f9d9f6a6909b252cdd (patch)
tree5b33cd5dee712d71d3df0fdc20f5208ee1eed907 /Command
parent478fdc8a5d8b87b6ccbdff61e1e2e88032d34b48 (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')
-rw-r--r--Command/Unused.hs1
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