diff options
author | V3n3RiX <venerix@koprulu.sector> | 2022-10-26 13:27:42 +0100 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2022-10-26 13:27:42 +0100 |
commit | f2b26188fd4debefb9a93932a919d39bf80be10a (patch) | |
tree | 3b54df26b65c718af9a8f0ef82ee5c3fcf9484e4 /src/backend/updateAll.py | |
parent | b51a4c690ccf0353e87211ea4864d49b1c3d5c70 (diff) |
rename start && startqt -> cliExec && guiExec
Diffstat (limited to 'src/backend/updateAll.py')
-rw-r--r-- | src/backend/updateAll.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/updateAll.py b/src/backend/updateAll.py index c5809ab..41d4a3a 100644 --- a/src/backend/updateAll.py +++ b/src/backend/updateAll.py @@ -17,7 +17,7 @@ def syncAll(): sisyphus.syncDatabase.remoteTable() @animation.wait('fetching updates') -def start(): +def cliExec(): activeBranch = sisyphus.checkEnvironment.branch() binhostURL = sisyphus.getEnvironment.binhostURL() isSane = sisyphus.checkEnvironment.sanity() @@ -31,7 +31,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 startqt(): +def guiExec(): activeBranch = sisyphus.checkEnvironment.branch() binhostURL = sisyphus.getEnvironment.binhostURL() isSane = sisyphus.checkEnvironment.sanity() |