Skip to content
This repository has been archived by the owner on Dec 21, 2024. It is now read-only.

Commit

Permalink
chore(toolchain): fix no backend output on windows (#433)
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanFlurry committed Sep 18, 2024
1 parent 29477a5 commit 7599ba8
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions packages/toolchain/src/backend/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,12 +94,6 @@ pub async fn build_backend_command(opts: BackendCommandOpts) -> Result<Command>
.envs(cmd_raw.envs)
.current_dir(cmd_raw.current_dir);

#[cfg(windows)]
{
use windows::Win32::System::Threading::{CREATE_NO_WINDOW};
cmd.creation_flags(CREATE_NO_WINDOW.0);
}

Ok(cmd)
}

Expand Down

0 comments on commit 7599ba8

Please sign in to comment.