Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 15, 2006, 2:08:43 PM (18 years ago)
Author:
bensch
Message:

more style

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/gui/scripts/tardis-scratch-checkout.pl

    r7279 r8460  
    2424  print("Checking out ORXONOX from '$URL' to '$destination'\n");
    2525
    26 
    27   open(SVN_CO, "svn co $URL $destination |");
    28   while(<SVN_CO>){
     26  if (-e $destination)
     27  {
     28   open(SVN_UP, "svn up $destination |");
     29   while(<SVN_UP>) {
    2930   print $_;
     31   }
    3032  }
    31  
     33  else
     34  {
     35   open(SVN_CO, "svn co $URL $destination |");
     36   while(<SVN_CO>){
     37    print $_;
     38   }
     39  }
    3240  chdir("$destination");
    3341
     
    4452    printf $_;
    4553  }
    46  
     54
    4755  print ("Executing make with opts -j3\n");
    4856  open(MAKE, "make -j3|");
Note: See TracChangeset for help on using the changeset viewer.