diff options
author | V3n3RiX <venerix@koprulu.sector> | 2023-03-09 19:28:11 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2023-03-09 19:28:11 +0000 |
commit | 180c2e119142573d42fe0e67a42b3530a7aed70b (patch) | |
tree | 1a7b0e105227cb9a701189fb91b85e2bba580d66 /src/backend/update.py | |
parent | 8577a33ed2f85d13b3e1dd66970ca1302b268719 (diff) |
fixups
Diffstat (limited to 'src/backend/update.py')
-rw-r--r-- | src/backend/update.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/backend/update.py b/src/backend/update.py index b2bb322..60aae3c 100644 --- a/src/backend/update.py +++ b/src/backend/update.py @@ -21,36 +21,36 @@ def syncAll(): @animation.wait('fetching updates') def start(): activeBranch = sisyphus.getenv.systemBranch() - bhaddr = sisyphus.getenv.bhaddr() + bh_addr = sisyphus.getenv.bh_addr() isSane = sisyphus.checkenv.sanity() if isSane == 1: syncAll() else: - if "packages-next" in bhaddr: + if "packages-next" in bh_addr: print(sisyphus.getcolor.green + "\n\nActive branch:" + " " + sisyphus.getcolor.reset + "'" + activeBranch + "'" + " " + "(stable)" + - " " + sisyphus.getcolor.green + "\nActive binhost:" + " " + sisyphus.getcolor.reset + "'" + bhaddr + "'" + " " + "(testing)") + " " + sisyphus.getcolor.green + "\nActive binhost:" + " " + sisyphus.getcolor.reset + "'" + bh_addr + "'" + " " + "(testing)") else: print(sisyphus.getcolor.green + "\n\nActive branch:" + " " + sisyphus.getcolor.reset + "'" + activeBranch + "'" + " " + "(testing)" + - " " + sisyphus.getcolor.green + "\nActive binhost:" + " " + sisyphus.getcolor.reset + "'" + bhaddr + "'" + " " + "(stable)") + " " + sisyphus.getcolor.green + "\nActive binhost:" + " " + sisyphus.getcolor.reset + "'" + bh_addr + "'" + " " + "(stable)") sys.exit(sisyphus.getcolor.bright_red + "\n\nInvalid configuration!" + sisyphus.getcolor.reset + sisyphus.getcolor.bright_yellow + "\nUse" + sisyphus.getcolor.reset + " " + "'" + "sisyphus branch --help" + "'" + " " + sisyphus.getcolor.bright_yellow + "for help" + sisyphus.getcolor.reset) def xstart(): activeBranch = sisyphus.getenv.systemBranch() - bhaddr = sisyphus.getenv.bhaddr() + bh_addr = sisyphus.getenv.bh_addr() isSane = sisyphus.checkenv.sanity() if isSane == 1: syncAll() else: - if "packages-next" in bhaddr: + if "packages-next" in bh_addr: print("\n\nActive branch:" + " " + "'" + activeBranch + "'" + " " + "(stable)" + - "\nActive binhost:" + " " + "'" + bhaddr + "'" + " " + "(testing)") + "\nActive binhost:" + " " + "'" + bh_addr + "'" + " " + "(testing)") else: print("\n\nActive branch:" + " " + "'" + activeBranch + "'" + " " + "(testing)" + - "\nActive binhost:" + " " + "'" + bhaddr + "'" + " " + "(stable)") + "\nActive binhost:" + " " + "'" + bh_addr + "'" + " " + "(stable)") print("\n\nInvalid configuration!" + "\nUse 'sisyphus branch --help' for help\n") t = int(10) |