Skip to content
This repository was archived by the owner on Mar 14, 2026. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion snap/snapcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ parts:

build-snaps:
- rustup/latest/stable
- bun-js/latest/stable
build-packages:
- libwebkit2gtk-4.1-dev
- build-essential
Expand All @@ -95,6 +94,12 @@ parts:
set -eu
rustup default stable

# Install Bun
curl -fsSL https://bun.sh/install | bash
export BUN_INSTALL="$HOME/.bun"
export PATH="$BUN_INSTALL/bin:$PATH"
# ---

bun install
rm -f src-tauri/target/release/bundle/deb/*.deb
bun tauri build --bundles deb
Expand Down
Loading