fix: reparar build do desktop tauri
This commit is contained in:
parent
e291770417
commit
c463530757
9 changed files with 263 additions and 49 deletions
9
apps/desktop/scripts/xdg-open
Executable file
9
apps/desktop/scripts/xdg-open
Executable file
|
|
@ -0,0 +1,9 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Minimal stub to satisfy tools that expect xdg-open during bundling.
|
||||
# Fails silently when the real binary is unavailable.
|
||||
if command -v xdg-open >/dev/null 2>&1; then
|
||||
exec xdg-open "$@"
|
||||
else
|
||||
exit 0
|
||||
fi
|
||||
Loading…
Add table
Add a link
Reference in a new issue