| 77 | | NightlyTest::Process(\%parms) || die "UserSubmissions error: $?"; |
|---|
| 78 | | TarFiles::Create($parms) || die "UserSubmissions error: $?"; |
|---|
| 79 | | UserMetrics::Process(\%parms) || die "UserSubmissions error: $?"; |
|---|
| 80 | | Rsync() || die "UserSubmissions error: $?"; |
|---|
| | 77 | NightlyTest::Process(\%parms) || confess "UserSubmissions error: $?"; |
|---|
| | 78 | TarFiles::Create($parms) || confess "UserSubmissions error: $?"; |
|---|
| | 79 | UserMetrics::Process(\%parms) || confess "UserSubmissions error: $?"; |
|---|
| | 80 | Rsync() || confess "UserSubmissions error: $?"; |
|---|
| 89 | | $command = ("rsync -r -v -t /data/svn-tarfiles/SpeechCorpus/Trunk -e ssh user\@voxforge1\.org\:downloads/SpeechCorpus --stats"); print "***$command\n";system($command) == 0 or die "system $command failed: $?"; |
|---|
| 90 | | $command = ("rsync -r -v -t /data/svn-tarfiles/Main/Trunk -e ssh user\@voxforge1\.org\:downloads/Main --stats"); print "***$command\n";system($command) == 0 or die "system $command failed: $?"; |
|---|
| 91 | | $command = ("rsync -r -v -t /data/svn-tarfiles/Main/Tags -e ssh user\@voxforge1\.org\:downloads/Main --stats"); print "***$command\n"; system($command) == 0 or die "system $command failed: $?"; |
|---|
| 92 | | $command = ("rsync -r -v -t /data/svn-tarfiles/Nightly_Builds -e ssh user\@voxforge1\.org\:downloads --stats"); print "***$command\n"; system($command) == 0 or die "system $command failed: $?"; |
|---|
| 93 | | # !!!!!! |
|---|
| 94 | | $command = ("rsync -r -v -t /data/svn-tarfiles/Russian/Trunk -e ssh user\@voxforge1\.org\:downloads/Russian --stats"); print "***$command\n"; system($command) == 0 or die "system $command failed: $?"; |
|---|
| 95 | | # !!!!!! |
|---|
| | 89 | $command = ("rsync -r -v -t /data/svn-tarfiles/SpeechCorpus/Trunk -e ssh user\@voxforge1\.org\:downloads/SpeechCorpus --stats"); print "***$command\n";system($command) == 0 or confess "system $command failed: $?"; |
|---|
| | 90 | $command = ("rsync -r -v -t /data/svn-tarfiles/Main/Trunk -e ssh user\@voxforge1\.org\:downloads/Main --stats"); print "***$command\n";system($command) == 0 or confess "system $command failed: $?"; |
|---|
| | 91 | $command = ("rsync -r -v -t /data/svn-tarfiles/Main/Tags -e ssh user\@voxforge1\.org\:downloads/Main --stats"); print "***$command\n"; system($command) == 0 or confess "system $command failed: $?"; |
|---|
| | 92 | $command = ("rsync -r -v -t /data/svn-tarfiles/Nightly_Builds -e ssh user\@voxforge1\.org\:downloads --stats"); print "***$command\n"; system($command) == 0 or confess "system $command failed: $?"; |
|---|
| | 93 | $command = ("rsync -r -v -t /data/svn-tarfiles/Russian/Trunk -e ssh user\@voxforge1\.org\:downloads/Russian --stats"); print "***$command\n"; system($command) == 0 or confess "system $command failed: $?"; |
|---|