Skip to content

Commit f05f5be

Browse files
fix: install desktop-file-utils for desktop-e2e-linux CI (#2019)
Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
1 parent fdaff0b commit f05f5be

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

scripts/setup-desktop-e2e.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,15 @@ else
3030
echo "webkit2gtk-driver package already installed"
3131
fi
3232

33+
# Install desktop-file-utils for update-desktop-database (required by tauri-plugin-deep-link)
34+
if ! command -v update-desktop-database >/dev/null 2>&1; then
35+
echo "Installing desktop-file-utils..."
36+
sudo apt-get update
37+
sudo apt-get install -y desktop-file-utils
38+
else
39+
echo "update-desktop-database already available in PATH"
40+
fi
41+
3342
# Ensure WebKitWebDriver is actually callable from PATH
3443
if ! command -v WebKitWebDriver >/dev/null 2>&1; then
3544
echo "WebKitWebDriver not on PATH, trying to locate binary from webkit2gtk-driver package..."

0 commit comments

Comments
 (0)