Skip to content

Commit

Permalink
Improve inline doc
Browse files Browse the repository at this point in the history
  • Loading branch information
ibc committed Oct 20, 2023
1 parent 603c907 commit 6848851
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions worker/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,10 @@ fn main() {
// Force forward slashes on Windows too so that is plays well with our dumb `Makefile`.
let mediasoup_out_dir = format!("{}/out", out_dir.replace('\\', "/"));

// Store original PATH so we make `make clean-all` use it, otherwise
// our modified PATH may include rm.exe in Windows and delete itself.
// Store original PATH so we make `make clean-all` use it. This is because, in Windows,
// we may need to fetch `make` and we store it in out/msys and then we add out/msys/bin
// to the PATH, and that folder may contain rm.exe, so `make clean-all` would use
// that rm.exe and delete itself and make the task fail.
let original_path = env::var("PATH").unwrap();

// Add C++ std lib
Expand Down

0 comments on commit 6848851

Please sign in to comment.