chore: Update gitignore and path handling imports

This commit is contained in:
2026-05-08 04:13:47 +02:00
parent 27e51424b0
commit f2bbabc25e
2 changed files with 6 additions and 3 deletions

3
.gitignore vendored
View File

@@ -8,6 +8,9 @@ __pycache__
node_modules
dist
src-tauri/target
src-tauri/binaries
scripts/.sidecar-build
.sidecar-build
src-tauri/gen
package-lock.json
Cargo.lock

View File

@@ -2,11 +2,11 @@ use serde::{Deserialize, Serialize};
use serde_json::Value;
use std::fs::File;
use std::io::{BufRead, BufReader, Write};
use std::path::PathBuf;
use std::process::{Command, Stdio};
use std::path::{Path, PathBuf};
use std::process::{Command as ProcessCommand, Stdio};
use tauri::{
menu::{Menu, MenuItem, Submenu},
Emitter,
AppHandle, Emitter, Manager,
};
fn repo_root() -> PathBuf {