| |
|
Line 163
|
Parallel
|
Line 163
|
Parallel
|
| 163 |
$read_stderr_fh = new FileHandle; |
163 |
$read_stderr_fh = new FileHandle; |
| 164 |
|
164 |
|
| 165 |
@args = (); |
165 |
@args = (); |
| 166 |
push @args, 'cat'; |
166 |
push @args, 'diff'; |
| 167 |
push @args, '--non-interactive'; |
167 |
push @args, '--non-interactive'; |
| 168 |
push @args, '--no-auth-cache'; |
168 |
push @args, '--no-auth-cache'; |
| 169 |
push @args, @{ $self->{userCmdLine} }; |
169 |
push @args, @{ $self->{userCmdLine} }; |
| 170 |
push @args, '-r'; |
170 |
push @args, '-r'; |
| 171 |
push @args, $start_tag . ':' . $end_tag, |
171 |
push @args, $start_tag . ':' . $end_tag; |
| 172 |
push @args, '--old'; |
172 |
push @args, '--old'; |
| 173 |
push @args, $self->{repository_url} . $module_name; |
173 |
push @args, $self->{repository_url}; |
|
|
174 |
push @args, $module_name; |
| 174 |
|
175 |
|
| 175 |
$pid = open3($write_stdin_fh, $read_stdout_fh, $read_stderr_fh, |
176 |
$pid = open3($write_stdin_fh, $read_stdout_fh, $read_stderr_fh, |
| 176 |
$Codestriker::svn, @args); |
177 |
$Codestriker::svn, @args); |
| |