9 lines
228 B
Bash
Executable file
9 lines
228 B
Bash
Executable file
#!/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
|