blob: 2594c720e3bde23f72cfc69c2f1cc93924ac4f28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/usr/bin/python3
import animation
import os
import sisyphus.getFilesystem
import sisyphus.syncDatabase
@animation.wait('recovering databases')
def cliExec():
if os.path.exists(sisyphus.getFilesystem.remotePackagesCsv):
os.remove(sisyphus.getFilesystem.remotePackagesCsv)
if os.path.exists(sisyphus.getFilesystem.remoteDescriptionsCsv):
os.remove(sisyphus.getFilesystem.remoteDescriptionsCsv)
if os.path.exists(sisyphus.getFilesystem.localPackagesCsv):
os.remove(sisyphus.getFilesystem.localPackagesCsv)
if os.path.exists(sisyphus.getFilesystem.localDatabase):
os.remove(sisyphus.getFilesystem.localDatabase)
sisyphus.syncDatabase.remoteTable()
sisyphus.syncDatabase.localTable()
|