Skip to content

Commit

Permalink
attribute code to original aftman source
Browse files Browse the repository at this point in the history
  • Loading branch information
afujiwara-roblox committed Oct 4, 2023
1 parent a8b7564 commit 43023dd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/process/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//Orignal source from https://github.com/LPGhatguy/aftman/blob/d3f8d1fac4c89d9163f8f3a0c97fa33b91294fea/src/process/mod.rs

#[cfg(windows)]
mod windows;

Expand Down
2 changes: 2 additions & 0 deletions src/process/unix.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//Original source from https://github.com/LPGhatguy/aftman/blob/d3f8d1fac4c89d9163f8f3a0c97fa33b91294fea/src/process/unix.rs

//! On Unix, we use tokio to spawn processes so that we can listen for signals
//! and wait for process completion at the same time.
Expand Down
2 changes: 2 additions & 0 deletions src/process/windows.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//Original source from https://github.com/LPGhatguy/aftman/blob/d3f8d1fac4c89d9163f8f3a0c97fa33b91294fea/src/process/windows.rs

//! On Windows, we use command_group to spawn processes in a job group that will
//! be automatically cleaned up when this process exits.
Expand Down

0 comments on commit 43023dd

Please sign in to comment.