chore: Update gitignore and path handling imports
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -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
|
||||
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user