From 2fb3f0673377c4676bd1e50289fd2bae4eb038cc Mon Sep 17 00:00:00 2001 From: Tahoora Tabassum Date: Tue, 23 Dec 2025 22:27:34 +0530 Subject: [PATCH 1/2] Fix --version-id -> --versionid in CLI --- databusclient/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/databusclient/cli.py b/databusclient/cli.py index 4e97470..0dc7047 100644 --- a/databusclient/cli.py +++ b/databusclient/cli.py @@ -16,7 +16,7 @@ def app(): @app.command() @click.option( - "--version-id", "version_id", + "--versionid", "version_id", required=True, help="Target databus version/dataset identifier of the form " "", From d4bb454af8fc7011ee652aa82394f1273bfe0407 Mon Sep 17 00:00:00 2001 From: Tahoora Tabassum Date: Tue, 23 Dec 2025 22:28:36 +0530 Subject: [PATCH 2/2] Fix --version-id -> --versionid in test script --- test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.sh b/test.sh index f590198..0a4c096 100755 --- a/test.sh +++ b/test.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash databusclient deploy \ - --version-id "https://d8lr.tools.dbpedia.org/hopver/testGroup/testArtifact/1.0-alpha/" \ + --versionid "https://d8lr.tools.dbpedia.org/hopver/testGroup/testArtifact/1.0-alpha/" \ --title "Test Title" \ --abstract "Test Abstract" \ --description "Test Description" \