summaryrefslogtreecommitdiff
path: root/src/backend/checkEnvironment.py
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-10-26 00:05:14 +0100
committerV3n3RiX <venerix@koprulu.sector>2022-10-26 00:05:14 +0100
commitc7edab17a1b130b88010b26f1789da0569291676 (patch)
tree7ce8e192abcc5e106c2e2dc7c731bb13b054aa6b /src/backend/checkEnvironment.py
parent3a0e9fe9197a931c1f10208d7690b9d72ac42530 (diff)
merge getCSV && getBinhost into getEnvironment
Diffstat (limited to 'src/backend/checkEnvironment.py')
-rw-r--r--src/backend/checkEnvironment.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/checkEnvironment.py b/src/backend/checkEnvironment.py
index 200be15..9613fe6 100644
--- a/src/backend/checkEnvironment.py
+++ b/src/backend/checkEnvironment.py
@@ -2,7 +2,7 @@
import os
import subprocess
-import sisyphus.getBinhost
+import sisyphus.getEnvironment
import sisyphus.getFilesystem
def root():
@@ -25,10 +25,10 @@ def branch():
def sanity():
activeBranch = branch()
- isBinhost = sisyphus.getBinhost.start()
+ binhostURL = sisyphus.getEnvironment.binhostURL()
isSane = int()
- if "packages-next" in isBinhost:
+ if "packages-next" in binhostURL:
if activeBranch == "next":
isSane = int(1)
else: