Changeset 8460 in orxonox.OLD for branches/gui/scripts/tardis-scratch-checkout.pl
- Timestamp:
- Jun 15, 2006, 2:08:43 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gui/scripts/tardis-scratch-checkout.pl
r7279 r8460 24 24 print("Checking out ORXONOX from '$URL' to '$destination'\n"); 25 25 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>) { 29 30 print $_; 31 } 30 32 } 31 33 else 34 { 35 open(SVN_CO, "svn co $URL $destination |"); 36 while(<SVN_CO>){ 37 print $_; 38 } 39 } 32 40 chdir("$destination"); 33 41 … … 44 52 printf $_; 45 53 } 46 54 47 55 print ("Executing make with opts -j3\n"); 48 56 open(MAKE, "make -j3|");
Note: See TracChangeset
for help on using the changeset viewer.