diff options
author | V3n3RiX <venerix@koprulu.sector> | 2022-10-30 20:02:58 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2022-10-30 20:02:58 +0000 |
commit | 206c993e45c39e60eceae1f66c69d39903ab9266 (patch) | |
tree | 96e15cacf4f5ad804fb97f0fb37584c6d064acfd /src/backend/update.py | |
parent | 80d633d0738461d7715e5051ab7f3248068fa87e (diff) |
space functions a bit
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() |