We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e730588 commit 588e3b1Copy full SHA for 588e3b1
1 file changed
scripts/build-static.sh
@@ -29,6 +29,8 @@ for tag in $(git tag); do
29
30
# Starting with v0.4 we serve links schemas too
31
if [[ -d schemas/links ]]; then
32
- cp -r schemas/links "${TARGET_SCHEMA_FOLDER}"
+ for schema in schemas/*json; do
33
+ cp -r "schemas/links/${schema}" "schemas/links/${schema%.*}"
34
+ done
35
fi
36
done
0 commit comments