We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01e2e79 commit a44db5eCopy full SHA for a44db5e
1 file changed
src/commands/start.rs
@@ -4,17 +4,17 @@
4
use clap::Args;
5
use libc::c_char;
6
use std::ffi::CString;
7
-use std::fs::File;
8
#[cfg(target_os = "macos")]
9
use std::fs;
+use std::fs::File;
10
+use std::io::Write;
11
#[cfg(target_os = "linux")]
12
use std::io::{Error, ErrorKind};
13
-use std::io::Write;
14
-use std::os::unix::io::AsRawFd;
15
-#[cfg(target_os = "macos")]
16
use std::os::unix::fs::PermissionsExt;
17
+use std::os::unix::io::AsRawFd;
+#[cfg(target_os = "macos")]
18
use std::path::Path;
19
20
use crate::bindings;
0 commit comments