Merge branch 'webapp-help' into 'v3'

Help text for errors

See merge request openflexure/openflexure-microscope-server!610
This commit is contained in:
Julian Stirling 2026-06-16 09:15:01 +00:00
commit 236190da64

View file

@ -59,7 +59,11 @@ def main(branch: str = "v3", project: Optional[str] = None) -> None:
zip_data = ofm_repo.artifacts.download(branch, "build")
except GitlabGetError as e:
print(f"Failed to get artifacts from GitLab.\n{e}")
print(
"Failed to get artifacts from GitLab.\n"
"If pointing to a branch, ensure the artifacts haven't expired,\n"
f"and rerun the pipeline from Gitlab if necessary.\n{e}"
)
sys.exit(-1)
if zip_data is None: