Move syndicate-protocols inside the syndicate package, so that the package-builder can see it

This commit is contained in:
Tony Garnock-Jones 2022-05-25 21:02:57 +02:00
parent a176b22bf7
commit 004bcbc5a8
19 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ testonly:
raco test -p $(PACKAGES)
pull-protocols:
git subtree pull -P protocols \
git subtree pull -P syndicate/private/protocols \
-m 'Merge latest changes from the syndicate-protocols repository' \
git@git.syndicate-lang.org:syndicate-lang/syndicate-protocols \
main

View File

@ -16,7 +16,7 @@
(define output-directory (build-path syndicate-path "schemas"))
(delete-directory/files output-directory #:must-exist? #f)
(parameterize ((schema-compiler-plugin-mode 'meta))
(batch-compile #:inputs (list (build-path syndicate-path "../protocols/schemas/**.prs"))
(batch-compile #:inputs (list (build-path syndicate-path "private/protocols/schemas/**.prs"))
#:additional-modules (hash '(EntityRef) 'syndicate/entity-ref)
#:output-directory output-directory
#:plugins (list schema-compiler-plugin))))