From 81c91992da713c03393dac3a3cbb73594e36b6b6 Mon Sep 17 00:00:00 2001 From: Tomoya Tanjo Date: Thu, 29 Aug 2024 01:02:36 +0900 Subject: [PATCH] Update links to the schema of CWL v1.2 --- README.md | 2 +- update-parsers.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1e2c326..6073272 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Each parser is generated with [schema-salad-tool](https://github.com/common-work - CWL v1.2 ```console - $ schema-salad-tool --codegen dlang https://github.com/common-workflow-language/cwl-v1.2/raw/1.2.1_proposed/CommonWorkflowLanguage.yml --codegen-package cwl.v1_2 --codegen-parser-info "CWL v1.2 parser generated with schema-salad-tool" --codegen-examples resources/cwl-v1.2 > v1_2.d + $ schema-salad-tool --codegen dlang https://github.com/common-workflow-language/cwl-v1.2/raw/codegen/CommonWorkflowLanguage.yml --codegen-package cwl.v1_2 --codegen-parser-info "CWL v1.2 parser generated with schema-salad-tool" --codegen-examples resources/cwl-v1.2 > v1_2.d ``` - You can specify the package name via `--codegen-package`. diff --git a/update-parsers.sh b/update-parsers.sh index ee41980..810ec40 100755 --- a/update-parsers.sh +++ b/update-parsers.sh @@ -14,4 +14,4 @@ schema-salad-tool --codegen dlang --codegen-package cwl.v1_1 --codegen-parser-in schema-salad-tool --codegen dlang --codegen-package cwl.v1_2 --codegen-parser-info "CWL v1.2 parser generated with schema-salad-tool" \ --codegen-examples resources/cwl-v1.2 \ - https://github.com/common-workflow-language/cwl-v1.2/raw/1.2.1_proposed/CommonWorkflowLanguage.yml > source/cwl/v1_2.d + https://github.com/common-workflow-language/cwl-v1.2/raw/codegen/CommonWorkflowLanguage.yml > source/cwl/v1_2.d