Changeset 2 for trunk/scripts/copy_source.pl
- Timestamp:
- 11/20/05 20:25:43 (3 years ago)
- Files:
-
- 1 modified
-
trunk/scripts/copy_source.pl (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/scripts/copy_source.pl
r1 r2 11 11 12 12 # this is where the original source files live on my pc 13 $original_source_dir = "c:/projects/cloudy/ current/source";13 $original_source_dir = "c:/projects/cloudy/trunk/source"; 14 14 15 15 # the root dir where the unix files will live on the linux cluster 16 $cluster_unix_source_dir = "u:/cloudy/ current/source";16 $cluster_unix_source_dir = "u:/cloudy/trunk/source"; 17 17 18 18 # this is the ftp site on gradj … … 20 20 21 21 # the root dir where the unix files will live on my pc 22 $local_unix_source_dir = "c:/projects/cloudy/ current/unix/source";23 $local_unix_main_dir = "c:/projects/cloudy/ current/unix";22 $local_unix_source_dir = "c:/projects/cloudy/trunk/unix/source"; 23 $local_unix_main_dir = "c:/projects/cloudy/trunk/unix"; 24 24 25 25 # the win dir within the unix set 26 $local_win_source_dir = "c:/projects/cloudy/ current/win/source";26 $local_win_source_dir = "c:/projects/cloudy/trunk/win/source"; 27 27 28 28 #this is where backup files will be dropped 29 $unixhome = "c:/projects/cloudy/ current/unix";30 $winhome = "c:/projects/cloudy/ current/win";29 $unixhome = "c:/projects/cloudy/trunk/unix"; 30 $winhome = "c:/projects/cloudy/trunk/win"; 31 31 # end block - set up paths to all targets on various machines 32 32 … … 138 138 # we have now clobbered the path.c file, and need to copy a valid one from 1 dir up 139 139 # so that version on unix cluster will compile & execute 140 copy( "u:/cloudy/ current/path.c" , "u:/cloudy/current/source/path.c" );140 copy( "u:/cloudy/trunk/path.c" , "u:/cloudy/trunk/source/path.c" ); 141 141 142 142 # now zip up the files we created
