Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion apps/desktop/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "desktop",
"version": "0.1.0-beta.15",
"version": "0.1.0-beta.16",
Copy link

Copilot AI Mar 24, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR description/title focus on the Arch PKGBUILD path fix, but this also bumps apps/desktop/package.json from 0.1.0-beta.15 → beta.16. If this version bump is intentional, it should be kept in sync with apps/desktop/src-tauri/tauri.conf.json and apps/desktop/src-tauri/Cargo.toml (docs/releases.md describes this), otherwise please revert the version change to avoid drift.

Copilot uses AI. Check for mistakes.
"description": "Cross-platform SSH manager desktop app",
"scripts": {
"dev": "vite",
Expand Down
4 changes: 2 additions & 2 deletions apps/desktop/src-tauri/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ package() {
# The Tauri build for Debian creates a directory structure we can reuse.
# In a Cargo workspace, we find the data directory within the workspace root's target folder.
# Tauri sanitizes versions (e.g., stripping pre-release tags for DEB), so we find the first dir.
_deb_bundle_dir=$(find ../../../target/release/bundle/deb -maxdepth 1 -mindepth 1 -type d | head -n 1)
_deb_bundle_dir=$(find "${startdir}/../../../target/release/bundle/deb" -maxdepth 1 -mindepth 1 -type d | head -n 1)

if [ -z "$_deb_bundle_dir" ]; then
echo "Error: Could not find any Debian bundle directory"
echo "Searched in: ../../../target/release/bundle/deb"
echo "Searched in: ${startdir}/../../../target/release/bundle/deb"
exit 1
fi

Expand Down
Loading