Skip to content

Commit

Permalink
bugfix:子模块的clone和checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
sun5etop committed Mar 11, 2024
1 parent aaaa7b6 commit e723d6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/executor/source.rs
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ impl GitSource {
));
}

//当checkout仓库的子进程结束后,启动子模块的子进程
//当checkout仓库的子进程结束后,启动checkout子模块的子进程
let subproc: std::process::Child = subcmd
.stderr(Stdio::piped())
.spawn()
Expand Down Expand Up @@ -289,7 +289,7 @@ impl GitSource {
));
}

//当克隆仓库的子进程结束后,启动子模块的子进程
//当克隆仓库的子进程结束后,启动保证克隆子模块的子进程
let subproc: std::process::Child = subcmd
.stderr(Stdio::piped())
.stdout(Stdio::inherit())
Expand Down

0 comments on commit e723d6e

Please sign in to comment.