From 02df5c59327919ceab4516b1f78b16e1af4d6b68 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Thu, 1 Jun 2017 13:12:42 -0400 Subject: [PATCH] support --to=. as shorthand for --to=here --- Command/Move.hs | 1 + 1 file changed, 1 insertion(+) diff --git a/Command/Move.hs b/Command/Move.hs index 76b6c882a5..6c65b8c2ad 100644 --- a/Command/Move.hs +++ b/Command/Move.hs @@ -43,6 +43,7 @@ optParser desc = MoveOptions parseto = herespecialcase <$> parseToOption where herespecialcase "here" = Left ToHere + herespecialcase "." = Left ToHere herespecialcase n = Right $ ToRemote $ parseRemoteOption n instance DeferredParseClass MoveOptions where