From be30f664b22748e4249c7cd7ad5bf9ef0338bbc6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Sch=C3=BCtt?= Date: Wed, 18 Jan 2023 19:07:59 +0100 Subject: [PATCH] Print store information on CI --- lib/cli/src/commands/create_exe.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/cli/src/commands/create_exe.rs b/lib/cli/src/commands/create_exe.rs index 630ff768d..a3248a83a 100644 --- a/lib/cli/src/commands/create_exe.rs +++ b/lib/cli/src/commands/create_exe.rs @@ -232,6 +232,7 @@ impl CreateExe { "Using path `{}` as libwasmer path.", cross_compilation.library.display() ); + println!("store: {:#?}", store); if !cross_compilation.library.exists() { return Err(anyhow::anyhow!("library path does not exist")); }