From 376370c729ae7bc74c424b107bd9a78741613cf0 Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Sun, 3 May 2026 00:32:10 +0100 Subject: [PATCH] Fix incorrect path --- scripts/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build.sh b/scripts/build.sh index 8c7ab90..7a1190c 100644 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -15,7 +15,7 @@ for file in $FILES; do clean_name=$(echo "${file#schemas/}" | sed 's/\//_/g' | sed 's/\.json//g') # OGenerate TS - npx --yes json-schema-to-typescript "$file" > "../../../gen/ts/${clean_name}.ts" + npx --yes json-schema-to-typescript "$file" > "./gen/ts/${clean_name}.ts" # Generate Go go-jsonschema -p contracts "$file" > "./gen/go/models/${clean_name}.go"