Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 8518 in orxonox.OLD for trunk/scripts


Ignore:
Timestamp:
Jun 16, 2006, 10:23:05 AM (18 years ago)
Author:
bensch
Message:

merged the gui back to the trunk

File:
1 edited

Legend:

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

    r7279 r8518  
    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.