mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-12-27 09:58:10 +01:00
Fixed upgrade dependencies
This commit is contained in:
parent
546f33c200
commit
076e739a5a
2 changed files with 3 additions and 1 deletions
|
@ -1,6 +1,8 @@
|
|||
4.7.2 - 02/04/2023
|
||||
Updated:
|
||||
- Packaging parse versions
|
||||
Fixed:
|
||||
- Upgrade dependencies without -r option
|
||||
|
||||
4.7.1 - 02/04/2023
|
||||
Fixed:
|
||||
|
|
|
@ -142,7 +142,7 @@ class Slackbuilds(Configs):
|
|||
if not self.utils.is_package_installed(name) and self.mode != 'build':
|
||||
return True
|
||||
|
||||
if not self.upgrade.is_package_upgradeable(name) and self.mode != 'build':
|
||||
if not self.upgrade.is_package_upgradeable(name) and self.mode not in ['build', 'upgrade']:
|
||||
return False
|
||||
|
||||
return True
|
||||
|
|
Loading…
Reference in a new issue