summaryrefslogtreecommitdiff
path: root/app/SlackBuilder/CommandLine.hs
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2023-11-01 19:07:49 +0100
committerEugen Wissner <belka@caraus.de>2023-11-01 19:07:49 +0100
commit24e62c343946e0413648f14a1d17fb2007b91a86 (patch)
tree7198c137fcfdfd33dcbac2da6012534d605e6aac /app/SlackBuilder/CommandLine.hs
parent64233c4c635f23b2aca4d69971869a795029f3de (diff)
downloadslackbuilder-24e62c343946e0413648f14a1d17fb2007b91a86.tar.gz
Update additional download versions in slackbuild
Diffstat (limited to 'app/SlackBuilder/CommandLine.hs')
-rw-r--r--app/SlackBuilder/CommandLine.hs5
1 files changed, 0 insertions, 5 deletions
diff --git a/app/SlackBuilder/CommandLine.hs b/app/SlackBuilder/CommandLine.hs
index 4890567..1b51b89 100644
--- a/app/SlackBuilder/CommandLine.hs
+++ b/app/SlackBuilder/CommandLine.hs
@@ -21,7 +21,6 @@ import Options.Applicative
data SlackBuilderCommand
= CategoryCommand Text
- | SlackBuildCommand Text Text
| CommitCommand Text Text
| ExistsCommand Text
| ArchiveCommand Text Text String Text
@@ -52,7 +51,6 @@ slackBuilderParser = info slackBuilderCommand fullDesc
slackBuilderCommand :: Parser SlackBuilderCommand
slackBuilderCommand = subparser
$ command "category" (info categoryCommand mempty)
- <> command "slackbuild" (info slackBuildCommand mempty)
<> command "commit" (info commitCommand mempty)
<> command "exists" (info existsCommand mempty)
<> command "archive" (info archiveCommand mempty)
@@ -63,9 +61,6 @@ slackBuilderCommand = subparser
where
categoryCommand = CategoryCommand
<$> argument str (metavar "PKGNAM")
- slackBuildCommand = SlackBuildCommand
- <$> argument str (metavar "PATH")
- <*> argument str (metavar "VERSION")
commitCommand = CommitCommand
<$> argument str (metavar "PATH")
<*> argument str (metavar "VERSION")