From b225c69741efcb31001b4d2ab8276e8609c2fc22 Mon Sep 17 00:00:00 2001 From: alvicsam Date: Fri, 25 Aug 2023 11:03:36 +0200 Subject: [PATCH] FIXME Hotfix crates Signed-off-by: alvicsam --- cumulus/test/relay-validation-worker-provider/build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cumulus/test/relay-validation-worker-provider/build.rs b/cumulus/test/relay-validation-worker-provider/build.rs index 599b1b73b4..a0a476b019 100644 --- a/cumulus/test/relay-validation-worker-provider/build.rs +++ b/cumulus/test/relay-validation-worker-provider/build.rs @@ -113,7 +113,7 @@ fn add_patches(project_toml: &mut Table) { let workspace_toml_path = PathBuf::from( env::var("CARGO_MANIFEST_DIR").expect("`CARGO_MANIFEST_DIR` is set by cargo"), ) - .join("../../Cargo.toml"); + .join("../../../Cargo.toml"); let mut workspace_toml: Table = toml::from_str( &fs::read_to_string(&workspace_toml_path).expect("Workspace root `Cargo.toml` exists; qed"),