From 98c76df2f77e29856c0a4aed3acf35a9438a41af Mon Sep 17 00:00:00 2001 From: Tony Garnock-Jones Date: Fri, 4 Feb 2022 14:15:28 +0100 Subject: [PATCH] Repair accidentally-committed reference to local path (!) --- syndicate/build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syndicate/build.rs b/syndicate/build.rs index 92ac4aa..c425f6b 100644 --- a/syndicate/build.rs +++ b/syndicate/build.rs @@ -30,7 +30,7 @@ fn main() -> std::io::Result<()> { c.plugins.push(Box::new(syndicate_plugins::PatternPlugin)); c.add_external_module(ExternalModule::new(vec!["EntityRef".to_owned()], "crate::actor")); - let inputs = expand_inputs(&vec!["../../syndicate-protocols/schema-bundle.bin".to_owned()])?; + let inputs = expand_inputs(&vec!["protocols/schema-bundle.bin".to_owned()])?; c.load_schemas_and_bundles(&inputs)?; compile(&c) }