From fc7bdf9779a6414a0e82e58ae375d008008c2233 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Thu, 13 Nov 2014 13:56:29 -0400 Subject: [PATCH] remove -- handling; this is already taken care of by the getopt processing --- Command/Proxy.hs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Command/Proxy.hs b/Command/Proxy.hs index fc29cce263..ef0d4b7cdf 100644 --- a/Command/Proxy.hs +++ b/Command/Proxy.hs @@ -22,8 +22,7 @@ cmd = [notBareRepo $ SectionCommon "safely bypass direct mode guard"] seek :: CommandSeek -seek ("--":ps) = withWords start ps -seek ps = withWords start ps +seek = withWords start start :: [String] -> CommandStart start [] = error "Did not specify command to run."