mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-12-27 09:58:10 +01:00
Fixed: 0 package will be installed... Would you like to continue [y/N]? #44
This commit is contained in:
parent
7c9d8913ef
commit
2618286845
1 changed files with 2 additions and 1 deletions
|
@ -168,7 +168,8 @@ class SBoInstall(object):
|
|||
def continue_to_install(self):
|
||||
"""Continue to install ?
|
||||
"""
|
||||
if self.master_packages and self.msg.answer() in ["y", "Y"]:
|
||||
if (self.count_uni > 0 and self.master_packages and
|
||||
self.msg.answer() in ["y", "Y"]):
|
||||
installs, upgraded = self.build_install()
|
||||
self.msg.reference(installs, upgraded)
|
||||
write_deps(self.deps_dict)
|
||||
|
|
Loading…
Reference in a new issue