"here" can be used to refer to the current repository, which can read better than the old "." (which still works too).

This commit is contained in:
Joey Hess 2012-03-01 22:35:10 -04:00
parent 478fdc8a5d
commit 1098bc37ab
4 changed files with 13 additions and 4 deletions

View file

@ -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