mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-12-31 10:26:39 +01:00
Added message if no logs found
This commit is contained in:
parent
1a25f24616
commit
5e51ab56c9
1 changed files with 10 additions and 0 deletions
|
@ -40,6 +40,8 @@ class DependenciesStatus(object):
|
||||||
self.count_dep = 0
|
self.count_dep = 0
|
||||||
self.dep_path = self.meta.log_path + "dep/"
|
self.dep_path = self.meta.log_path + "dep/"
|
||||||
self.logs = find_package("", self.dep_path)
|
self.logs = find_package("", self.dep_path)
|
||||||
|
if not self.logs:
|
||||||
|
self.no_logs()
|
||||||
self.installed = find_package("", self.meta.pkg_path)
|
self.installed = find_package("", self.meta.pkg_path)
|
||||||
|
|
||||||
def data(self):
|
def data(self):
|
||||||
|
@ -79,3 +81,11 @@ class DependenciesStatus(object):
|
||||||
print("=" * 79)
|
print("=" * 79)
|
||||||
print("{0}Found {1} dependencies in {2} packages.{3}\n".format(
|
print("{0}Found {1} dependencies in {2} packages.{3}\n".format(
|
||||||
grey, self.count_dep, self.count_pkg, endc))
|
grey, self.count_dep, self.count_pkg, endc))
|
||||||
|
|
||||||
|
def no_logs(self):
|
||||||
|
"""Print message if no logs found
|
||||||
|
"""
|
||||||
|
print("\n There were no logs files. Obviously it wasn't used the \n"
|
||||||
|
" method of installation with the command: \n"
|
||||||
|
" '$ slpkg -s <repository> <packages>' yet.\n")
|
||||||
|
raise SystemExit()
|
||||||
|
|
Loading…
Reference in a new issue