Skip to content
Snippets Groups Projects
Commit 09655ea0 authored by Ulrich Loup's avatar Ulrich Loup
Browse files

Fixes in for loop in .gitlab-ci.yml file.

parent c7fbf756
Branches gmp
No related tags found
No related merge requests found
......@@ -32,5 +32,5 @@ build-job: # This job runs in the build stage, which runs first.
stage: build
script:
- echo "Generating the schemas from examples/*.json..."
- for f in examples/*.json; do npx generate-schema -j "$f" > schemas/`basename "$f" .json`.schema.json; done
- for f in examples/*.json; do npx generate-schema -j "$f" > schemas/$(basename "$f" .json).schema.json; done
- echo "done."
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment