Updated for help

This commit is contained in:
Dimitris Zlatanidis 2023-03-30 23:04:51 +03:00
parent 3426206942
commit 1b4b388442
2 changed files with 5 additions and 1 deletions

View file

@ -39,7 +39,8 @@ Check if there is any news on the repositories ChangeLog.txt file.
.P .P
.B -I, repo-info .B -I, repo-info
.RS .RS
Prints the repositories information. View information related to repositories, such as which repositories are active, when they were upgraded,
and how many packages they contain.
.RE .RE
.P .P
.B -L, clean-logs .B -L, clean-logs

View file

@ -26,6 +26,8 @@ class Help(Configs):
'update': "Updates the package list and the database.", 'update': "Updates the package list and the database.",
'upgrade': "Upgrade all the installed packages if the newer version exists in the repository.", 'upgrade': "Upgrade all the installed packages if the newer version exists in the repository.",
'check-updates': "Check if there is any news on the SlackBuild's ChangeLog.txt file.", 'check-updates': "Check if there is any news on the SlackBuild's ChangeLog.txt file.",
'repo-info': "View information related to repositories, such as which repositories are active, "
"when they were upgraded, and how many packages they contain.",
'configs': "Edit the configuration '/etc/slpkg/slpkg.toml' file.", 'configs': "Edit the configuration '/etc/slpkg/slpkg.toml' file.",
'clean-logs': "Cleans dependencies log tracking. After that procedure you should remove dependencies " 'clean-logs': "Cleans dependencies log tracking. After that procedure you should remove dependencies "
"by hand.", "by hand.",
@ -49,6 +51,7 @@ class Help(Configs):
help_commands['-u'] = help_commands['update'] help_commands['-u'] = help_commands['update']
help_commands['-U'] = help_commands['upgrade'] help_commands['-U'] = help_commands['upgrade']
help_commands['-c'] = help_commands['check-updates'] help_commands['-c'] = help_commands['check-updates']
help_commands['-I'] = help_commands['repo-info']
help_commands['-g'] = help_commands['configs'] help_commands['-g'] = help_commands['configs']
help_commands['-L'] = help_commands['clean-logs'] help_commands['-L'] = help_commands['clean-logs']
help_commands['-D'] = help_commands['clean-tmp'] help_commands['-D'] = help_commands['clean-tmp']