(feat): improve builds

(fix): duplicates in license copy script
This commit is contained in:
Alois 2026-05-01 15:24:04 +02:00
commit 006c222cc5
6 changed files with 40 additions and 413 deletions

View file

@ -207,12 +207,12 @@ pub fn run() {
let builder = builder.plugin(tauri_plugin_barcode_scanner::init());
builder
.setup(|app| {
.setup(|_app| {
#[cfg(any(target_os = "linux", windows))]
{
use tauri_plugin_deep_link::DeepLinkExt;
if let Err(error) = app.deep_link().register_all() {
if let Err(error) = _app.deep_link().register_all() {
if cfg!(debug_assertions) {
eprintln!("Skipping deep link registration during dev: {error}");
} else {