summaryrefslogtreecommitdiff
path: root/src/SlackBuilder
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2025-03-14 00:35:53 +0100
committerEugen Wissner <belka@caraus.de>2025-03-14 00:35:53 +0100
commit731a36d7007d3d27712a9bfde2314845020de483 (patch)
treeb854ad79138352ec66445e7f2d87e13a6389a3db /src/SlackBuilder
parent8908b8ae93d4bd29db149a0a0eb5886d09ac5c3f (diff)
downloadslackbuilder-731a36d7007d3d27712a9bfde2314845020de483.tar.gz
Remove the installed command
Since it is out of scope for this project.
Diffstat (limited to 'src/SlackBuilder')
-rw-r--r--src/SlackBuilder/CommandLine.hs5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/SlackBuilder/CommandLine.hs b/src/SlackBuilder/CommandLine.hs
index ee81289..b098b3f 100644
--- a/src/SlackBuilder/CommandLine.hs
+++ b/src/SlackBuilder/CommandLine.hs
@@ -26,7 +26,6 @@ import Options.Applicative
data SlackBuilderCommand
= CheckCommand
| Up2DateCommand (Maybe Text)
- | InstalledCommand
slackBuilderParser :: ParserInfo SlackBuilderCommand
slackBuilderParser = info (helper <*> slackBuilderCommand) fullDesc
@@ -35,7 +34,6 @@ slackBuilderCommand :: Parser SlackBuilderCommand
slackBuilderCommand = subparser
$ command "check" checkCommand
<> command "up2date" up2DateCommand
- <> command "installed" installedCommand
where
checkCommand = info checkP $ progDesc "Check all configured slackbuilds for updates"
checkP = pure CheckCommand
@@ -43,6 +41,3 @@ slackBuilderCommand = subparser
<$> optional (argument str (metavar "PKGNAM"))
up2DateCommand = info up2DateP
$ progDesc "Update a single or multiple slackbuild in the configured repository"
- installedCommand = info installedP
- $ progDesc "Find local packages that can be updated using the configured repository"
- installedP = pure InstalledCommand