mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-06 17:24:23 +01:00
Added binaries
This commit is contained in:
parent
be3ba989ed
commit
e9c98e2ec0
1 changed files with 5 additions and 3 deletions
|
@ -76,7 +76,6 @@ class UpdateRepository(Configs):
|
||||||
print()
|
print()
|
||||||
|
|
||||||
self.delete_binaries_data(repo)
|
self.delete_binaries_data(repo)
|
||||||
|
|
||||||
self.data.install_gnome_data()
|
self.data.install_gnome_data()
|
||||||
|
|
||||||
def slackbuild_repositories(self):
|
def slackbuild_repositories(self):
|
||||||
|
@ -189,8 +188,11 @@ class UpdateRepository(Configs):
|
||||||
print(f'\n{self.prog_name}: {self.bred}WARNING{self.endc}: All the data from the database will be deleted!')
|
print(f'\n{self.prog_name}: {self.bred}WARNING{self.endc}: All the data from the database will be deleted!')
|
||||||
self.view.question()
|
self.view.question()
|
||||||
|
|
||||||
tables: list = [PonceTable.__table__,
|
tables: list = [
|
||||||
SBoTable.__table__]
|
PonceTable.__table__,
|
||||||
|
SBoTable.__table__,
|
||||||
|
BinariesTable.__table__
|
||||||
|
]
|
||||||
|
|
||||||
Base.metadata.drop_all(bind=engine, tables=tables)
|
Base.metadata.drop_all(bind=engine, tables=tables)
|
||||||
print("Successfully cleared!\n\nYou need to run 'slpkg update' now.")
|
print("Successfully cleared!\n\nYou need to run 'slpkg update' now.")
|
||||||
|
|
Loading…
Reference in a new issue