# New Ticket Created by  Sam Dela Cruz 
# Please include the string:  [perl #64712]
# in the subject line of all future correspondence about this issue. 
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=64712 >


Hi,

I think this line is wrong:
line 47:  system(qw(svn checkout -r),  $required , qw(
https://svn.parrot.org/parrot/trunk parrot));

all qw should be removed, in my ubuntu, i think what' s happening is it's
removing all the spaces, so I'm getting a bunch of error messages, i think
this is better:
system("svn checkout -r" . $required . " " . "
https://svn.parrot.org/parrot/trunk parrot");

Regards,
Sam

Reply via email to