github-backup 1.20141110 → 1.20141204
raw patch · 3 files changed
+11/−6 lines, 3 files
Files
- debian/changelog +7/−0
- github-backup.cabal +1/−1
- github-backup.hs +3/−5
debian/changelog view
@@ -1,3 +1,10 @@+github-backup (1.20141204) unstable; urgency=high++ * Fix broken argument parser for the username|organization parameter.+ Closes: #772043++ -- Joey Hess <id@joeyh.name> Thu, 04 Dec 2014 12:29:06 -0400+ github-backup (1.20141110) unstable; urgency=medium * Orphaned the Debian package.
github-backup.cabal view
@@ -1,5 +1,5 @@ Name: github-backup-Version: 1.20141110+Version: 1.20141204 Cabal-Version: >= 1.8 License: GPL Maintainer: Joey Hess <joey@kitenet.net>
github-backup.hs view
@@ -642,14 +642,12 @@ deriving (Show) options :: Parser Options-options = Options- <$> many owneropt- <*> many excludeopt+options = Options <$> many owneropt <*> many excludeopt where- owneropt = Owner <$> (strOption+ owneropt = Owner <$> (argument str) ( metavar "USERNAME|ORGANIZATION" <> help "Back up repositories owned by this entity."- ))+ ) excludeopt = parseUserRepo <$> (strOption ( long "exclude" <> metavar "USERNAME/REPOSITORY"