diff options
Diffstat (limited to 'src/backend/update.py')
-rw-r--r-- | src/backend/update.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/backend/update.py b/src/backend/update.py index acbc445..d6d944e 100644 --- a/src/backend/update.py +++ b/src/backend/update.py @@ -9,6 +9,7 @@ import sisyphus.purgeenv import sisyphus.syncdb import sisyphus.syncenv + def syncAll(): sisyphus.purgeenv.cache() sisyphus.syncenv.gentooRepo() @@ -16,6 +17,7 @@ def syncAll(): sisyphus.syncenv.portageConfigRepo() sisyphus.syncdb.remoteTable() + @animation.wait('fetching updates') def start(): activeBranch = sisyphus.checkenv.branch() @@ -31,6 +33,7 @@ def start(): print("\nCurrent branch: '" + activeBranch + "' (testing)" + "\nCurrent binhost: '" + binhostURL + "' (stable)") sys.exit("\nInvalid branch - binhost pairing; Use 'sisyphus branch --help' for help; Quitting.") + def startx(): activeBranch = sisyphus.checkenv.branch() binhostURL = sisyphus.getenv.binhostURL() |