Merge branch 'develop'

This commit is contained in:
Dimitris Zlatanidis 2020-05-20 11:44:21 +02:00
commit 8c6bb0f23c
4 changed files with 7 additions and 3 deletions

View file

@ -1,3 +1,7 @@
3.8.8 - 20/05/2020
BugFix:
- Fixed the name of variable flags to flag for patches upgrade option
3.8.7 - 01/04/2020
BuFix:
- '--checklist' flag doesn't work since 3.8.1 to 3.8.6 version #127

View file

@ -1,4 +1,4 @@
# slpkg 3.8.7
# slpkg 3.8.8
Slpkg is a powerful software package manager that installs, updates, and removes packages on
[Slackware](http://www.slackware.com/) based systems. It automatically computes dependencies and

View file

@ -76,7 +76,7 @@ class MetaData:
__all__ = "slpkg"
__author__ = "dslackw"
__version_info__ = (3, 8, 7)
__version_info__ = (3, 8, 8)
__version__ = "{0}.{1}.{2}".format(*__version_info__)
__license__ = "GNU General Public License v3 (GPLv3)"
__email__ = "d.zlatanidis@gmail.com"

View file

@ -320,7 +320,7 @@ class ArgParse(BlackList):
BinaryInstall(pkg_upgrade("slack", skip, flag),
"slack", flag).start(is_upgrade=True)
else:
Patches(skip, flags).start()
Patches(skip, flag).start()
elif self.args[1] == "sbo":
SBoInstall(sbo_upgrade(skip, flag), flag).start(
is_upgrade=True)