summaryrefslogtreecommitdiff
path: root/backend/resilient/bsv_metanet.py
diff options
context:
space:
mode:
Diffstat (limited to 'backend/resilient/bsv_metanet.py')
-rw-r--r--backend/resilient/bsv_metanet.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/backend/resilient/bsv_metanet.py b/backend/resilient/bsv_metanet.py
index 3d21b3e..62bf6c1 100644
--- a/backend/resilient/bsv_metanet.py
+++ b/backend/resilient/bsv_metanet.py
@@ -7,9 +7,16 @@ import time
class bsvup():
binary = "bsvup"
- found = (os.system("%s" % binary) == 0)
+ found = (os.system("%s --version" % binary) == 0)
# TODO: check dep_path for alternate location for binary
if not found:
+ binary = "%s/prefix/bin/bsvup" % dep_path
+ found = (os.system("%s --version" % binary) == 0)
+ if not found:
+ print("bsvup not found: attempting to install")
+ os.system("npm install --prefix %s/prefix -g %s/bsvup" % (dep_path, dep_path))
+ found = (os.system("%s --version" % binary) == 0)
+ if not found:
print("WARNING: bsvup not found. bsv metanet won't be updated")
def __init__(self, keyfile):