diff options
-rw-r--r-- | project.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1150,7 +1150,7 @@ class Project(object): | |||
1150 | p = GitCommand(self, cmd, bare=True, capture_stdout=bool(output_redir), | 1150 | p = GitCommand(self, cmd, bare=True, capture_stdout=bool(output_redir), |
1151 | merge_output=bool(output_redir)) | 1151 | merge_output=bool(output_redir)) |
1152 | if p.stdout and output_redir: | 1152 | if p.stdout and output_redir: |
1153 | buf.write(p.stdout) | 1153 | output_redir.write(p.stdout) |
1154 | if p.Wait() != 0: | 1154 | if p.Wait() != 0: |
1155 | return False | 1155 | return False |
1156 | platform_utils.remove(alternates_file) | 1156 | platform_utils.remove(alternates_file) |