Skip to content

Commit

Permalink
🚨 Fix the compilation issue on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
SquitchYT committed Sep 11, 2023
1 parent 048f81b commit 8158fd9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src-tauri/src/pty.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ use tauri::{AppHandle, Manager};

use crate::common::payloads::{PtySendData, PtyTitleChanged};

use std::ffi::OsString;

#[cfg(target_os = "windows")]
use crate::common::utils::get_leader_process_name;
#[cfg(target_os = "windows")]
Expand All @@ -16,8 +18,6 @@ use lazy_static::lazy_static;
use regex::{Captures, Regex};
#[cfg(target_os = "windows")]
use remoteprocess::Process;
#[cfg(target_os = "windows")]
use std::ffi::OsString;

pub struct Pty {
pub app: Arc<AppHandle>,
Expand Down

0 comments on commit 8158fd9

Please sign in to comment.