Subversion Repositories DevTools

Rev

Rev 1295 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1295 Rev 1300
Line 572... Line 572...
572
	    if (defined $Codestriker::tmpdir && $Codestriker::tmpdir ne "") {
572
	    if (defined $Codestriker::tmpdir && $Codestriker::tmpdir ne "") {
573
		$command_tmpdir = tempdir(DIR => $Codestriker::tmpdir);
573
		$command_tmpdir = tempdir(DIR => $Codestriker::tmpdir);
574
	    } else {
574
	    } else {
575
		$command_tmpdir = tempdir();
575
		$command_tmpdir = tempdir();
576
	    }
576
	    }
577
 
-
 
578
	    # Build up the command string with naive quoting.
577
	    # Build up the command string with naive quoting.
579
	    my $command_line = "\"$command\"";
578
	    my $command_line = "\"$command\"";
580
	    foreach my $arg (@args) {
579
	    foreach my $arg (@args) {
581
		$command_line .= " \"$arg\"";
580
		$command_line .= " \"$arg\"";
582
	    }
581
	    }