From 5a965a2ec9d83533aba5b4ab44cd6acbce666046 Mon Sep 17 00:00:00 2001 From: Rajiv Shah Date: Fri, 29 May 2020 14:28:29 -0400 Subject: [PATCH] fix(bundler): Update missing icon error message (#626) --- cli/tauri-bundler/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/tauri-bundler/src/main.rs b/cli/tauri-bundler/src/main.rs index 081612a0d..56fbcacfc 100644 --- a/cli/tauri-bundler/src/main.rs +++ b/cli/tauri-bundler/src/main.rs @@ -140,7 +140,7 @@ fn run() -> crate::Result<()> { Ok(s) } else { Err(crate::Error::from( - "Could not find Icon Paths. Please make sure they exist and are in your Cargo.toml's icon key.", + "Could not find Icon Paths. Please make sure they exist and are listed in the tauri.bundle.icon property of your tauri.conf.json.", )) } })