Repair accidentally-committed reference to local path (!)

This commit is contained in:
Tony Garnock-Jones 2022-02-04 14:15:28 +01:00
parent 0a0d977a48
commit 98c76df2f7
1 changed files with 1 additions and 1 deletions

View File

@ -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)
}