fix(deep-link): Add command name to linux errors (#2928)

This commit is contained in:
Fabian-Lars
2025-08-21 13:56:09 +02:00
committed by GitHub
parent 8abb31ee59
commit 21d721a0c2
3 changed files with 17 additions and 3 deletions
+3
View File
@@ -23,6 +23,9 @@ pub enum Error {
#[cfg(target_os = "linux")]
#[error(transparent)]
ParseIni(#[from] ini::ParseError),
#[cfg(target_os = "linux")]
#[error("Failed to run OS command `{0}`: {1}")]
Execute(&'static str, #[source] std::io::Error),
#[cfg(mobile)]
#[error(transparent)]
PluginInvoke(#[from] tauri::plugin::mobile::PluginInvokeError),