mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-05 11:02:14 +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()
|
||||
|
||||
self.delete_binaries_data(repo)
|
||||
|
||||
self.data.install_gnome_data()
|
||||
|
||||
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!')
|
||||
self.view.question()
|
||||
|
||||
tables: list = [PonceTable.__table__,
|
||||
SBoTable.__table__]
|
||||
tables: list = [
|
||||
PonceTable.__table__,
|
||||
SBoTable.__table__,
|
||||
BinariesTable.__table__
|
||||
]
|
||||
|
||||
Base.metadata.drop_all(bind=engine, tables=tables)
|
||||
print("Successfully cleared!\n\nYou need to run 'slpkg update' now.")
|
||||
|
|
Loading…
Reference in a new issue