Skip to content

Commit

Permalink
Merge pull request #233 from ItsEeleeya/next-windows
Browse files Browse the repository at this point in the history
Fix compile error on macos
  • Loading branch information
richiemcilroy authored Jan 3, 2025
2 parents 4d20afd + ffe3e9a commit 865587a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/utils/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ where

let _ = std::fs::remove_file(&pipe_path);
// Make FIFO if not existing
stat::mkfifo(&pipe_path, stat::Mode::S_IRWXU)
nix::unistd::mkfifo(&pipe_path, stat::Mode::S_IRWXU)
.expect("Failed to create a Unix FIFO with mkfifo()");

tokio::spawn(async move {
Expand Down

1 comment on commit 865587a

@vercel
Copy link

@vercel vercel bot commented on 865587a Jan 3, 2025

Choose a reason for hiding this comment

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

Please sign in to comment.