Fix extra Git output in rojo init and update place template

This commit is contained in:
Lucien Greathouse
2020-03-13 20:10:31 -07:00
parent fe874720aa
commit 9b4c89820d
2 changed files with 3 additions and 2 deletions

View File

@@ -171,6 +171,7 @@ fn should_git_init(path: &Path) -> bool {
let result = Command::new("git")
.args(&["rev-parse", "--is-inside-work-tree"])
.stdout(Stdio::null())
.stderr(Stdio::null())
.current_dir(path)
.status();