diff options
author | Joey Hess <joey@kitenet.net> | 2014-04-21 11:56:06 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2014-04-21 11:56:06 -0400 |
commit | e05863cbf10ac2bc67a37e491c947618fceecec0 (patch) | |
tree | dcca376656fe8bb32ca6484adb4d2aa57aae022a | |
parent | b130c4c4470ac03580204234d97e150ae3a63a75 (diff) |
--detach-sign
-rw-r--r-- | Build/DistributionUpdate.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Build/DistributionUpdate.hs b/Build/DistributionUpdate.hs index 3a4c550b0..dd3cce0ab 100644 --- a/Build/DistributionUpdate.hs +++ b/Build/DistributionUpdate.hs @@ -96,7 +96,7 @@ signFile f = do void $ liftIO $ boolSystem "gpg" [ Param "-a" , Param $ "--default-key=" ++ signingKey - , Param "--sign" + , Param "--detach-sign" , File f ] liftIO $ rename (f ++ ".asc") (f ++ ".sig") |