Changeset 2 for trunk/scripts/nightly_copy_files.pl
- Timestamp:
- 11/20/05 20:25:43 (3 years ago)
- Files:
-
- 1 modified
-
trunk/scripts/nightly_copy_files.pl (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/scripts/nightly_copy_files.pl
r1 r2 13 13 14 14 # this is where the original source files live on my pc 15 $original_source_dir = "c:/projects/cloudy/ current/source";16 $original_data_dir = "c:/projects/cloudy/ current/data";17 $original_tsuite_dir = "c:/projects/cloudy/ current/tsuite/auto";15 $original_source_dir = "c:/projects/cloudy/trunk/source"; 16 $original_data_dir = "c:/projects/cloudy/trunk/data"; 17 $original_tsuite_dir = "c:/projects/cloudy/trunk/tsuite/auto"; 18 18 19 19 # this is the current debug exe, will bail out if $local_unix_source_dir/source.tar.gz source 20 20 # is younger than this 21 $original_exe = "c:/projects/cloudy/ current/debug/current.exe";21 $original_exe = "c:/projects/cloudy/trunk/debug/current.exe"; 22 22 23 23 24 24 # the root dir where the unix files will live on the linux cluster 25 $cluster_unix_source_dir = "u:/cloudy/ current/source";26 $cluster_unix_tsuite_dir = "u:/cloudy/ current/tsuite";27 $cluster_unix_data_dir = "u:/cloudy/ current/data";25 $cluster_unix_source_dir = "u:/cloudy/trunk/source"; 26 $cluster_unix_tsuite_dir = "u:/cloudy/trunk/tsuite"; 27 $cluster_unix_data_dir = "u:/cloudy/trunk/data"; 28 28 29 29 # this is the ftp site on gradj … … 31 31 32 32 # the root dir where the unix files will live on my pc 33 $local_unix_source_dir = "c:/projects/cloudy/ current/unix/source";34 $local_unix_tsuite_dir = "c:/projects/cloudy/ current/unix/tsuite";35 $local_unix_data_dir = "c:/projects/cloudy/ current/unix/data";36 $local_unix_main_dir = "c:/projects/cloudy/ current/unix";33 $local_unix_source_dir = "c:/projects/cloudy/trunk/unix/source"; 34 $local_unix_tsuite_dir = "c:/projects/cloudy/trunk/unix/tsuite"; 35 $local_unix_data_dir = "c:/projects/cloudy/trunk/unix/data"; 36 $local_unix_main_dir = "c:/projects/cloudy/trunk/unix"; 37 37 38 38 # this is the last source.tar.gz, will compare this time stamp with debug exe … … 41 41 42 42 # the win dir within the unix set 43 $local_win_source_dir = "c:/projects/cloudy/ current/win/source";44 $local_win_tsuite_dir = "c:/projects/cloudy/ current/win/tsuite";45 $local_win_data_dir = "c:/projects/cloudy/ current/win/data";43 $local_win_source_dir = "c:/projects/cloudy/trunk/win/source"; 44 $local_win_tsuite_dir = "c:/projects/cloudy/trunk/win/tsuite"; 45 $local_win_data_dir = "c:/projects/cloudy/trunk/win/data"; 46 46 47 47 #this is where backup files will be dropped 48 $unixhome = "c:/projects/cloudy/ current/unix";49 $winhome = "c:/projects/cloudy/ current/win";48 $unixhome = "c:/projects/cloudy/trunk/unix"; 49 $winhome = "c:/projects/cloudy/trunk/win"; 50 50 51 51 # do we want to check timestamp? … … 473 473 474 474 print("\n=========================\n"); 475 print("All data files have been copied to current/unix/data subdir\n");475 print("All data files have been copied to trunk/unix/data subdir\n"); 476 476 print("=========================\n"); 477 477 … … 500 500 } 501 501 # we have now clobbered the path.c file, and need to copy a valid one from 1 dir up 502 copy( "u:/cloudy/ current/path.c" , "u:/cloudy/current/source/path.c" );502 copy( "u:/cloudy/trunk/path.c" , "u:/cloudy/trunk/source/path.c" ); 503 503 504 504 # move to pc unix tsuite directory
