From e34de9e504ced2051790961752f5e3c90e856c68 Mon Sep 17 00:00:00 2001 From: James Gebbie-Rayet Date: Tue, 30 Jun 2026 12:28:59 +0100 Subject: [PATCH] update file-store paths --- README.md | 2 +- longbow/entrypoints.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ffc3537..86c7fd3 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ longbow --examples or -https://www.hecbiosim.ac.uk/file-store/longbow-examples.zip +https://file-store.hecbiosim.org/longbow-examples.zip ## Support diff --git a/longbow/entrypoints.py b/longbow/entrypoints.py index acc3cab..2d3330d 100644 --- a/longbow/entrypoints.py +++ b/longbow/entrypoints.py @@ -568,14 +568,14 @@ def _downloadexamples(longbowargs): try: subprocess.check_call([ - "wget", "http://www.hecbiosim.ac.uk/file-store/" + "wget", "https://file-store.hecbiosim.org/" "longbow-examples.zip", "-O", os.path.join(os.getcwd(), "longbow-examples.zip")]) except subprocess.CalledProcessError: subprocess.call([ - "curl", "-L", "http://www.hecbiosim.ac.uk/file-store/" + "curl", "-L", "https://file-store.hecbiosim.org/" "longbow-examples.zip", "-o", os.path.join(os.getcwd(), "longbow-examples.zip")])