common/tools/summary/brag_script.pl
changeset 694 260b05585dc3
parent 385 065183c4417b
child 903 4ccad00aa05d
equal deleted inserted replaced
693:9f583ada8e4e 694:260b05585dc3
   611 # Copy html files for raptor summarise to bishare
   611 # Copy html files for raptor summarise to bishare
   612 # options used for xcopy
   612 # options used for xcopy
   613 # /E -> Copies directories and subdirectories, including empty ones.
   613 # /E -> Copies directories and subdirectories, including empty ones.
   614 # /F -> Displays full source and destination file names while copying.
   614 # /F -> Displays full source and destination file names while copying.
   615 # /I -> If destination does not exist and copying more than one file, assumes that destination must be a directory.
   615 # /I -> If destination does not exist and copying more than one file, assumes that destination must be a directory.
   616 my $copy_html = "xcopy $logdir\\html \\\\bishare\\sf_builds\\$project\\builds\\$codeline\\$buildid\\html \/E \/F \/I";
   616 my $copy_html = "xcopy $logdir\\html \\\\v800020\\Publish\\sf_builds\\$project\\builds\\$codeline\\$buildid\\html \/E \/F \/I";
   617 print "Exec: $copy_html\n";
   617 print "Exec: $copy_html\n";
   618 system($copy_html);
   618 system($copy_html);
   619 
   619 
   620 
   620 
   621 # Indicates end of the SUMMARISE section in the file
   621 # Indicates end of the SUMMARISE section in the file
   666 # *****************************************************************************
   666 # *****************************************************************************
   667 # Final step, copy build_summary.html to \\bishare drive
   667 # Final step, copy build_summary.html to \\bishare drive
   668 # *****************************************************************************
   668 # *****************************************************************************
   669 
   669 
   670 # Copy html file to bishare
   670 # Copy html file to bishare
   671 my $copy_cmd = "copy $logdir\\build_summary.html \\\\bishare\\sf_builds\\$project\\builds\\$codeline\\$buildid";
   671 my $copy_cmd = "copy $logdir\\build_summary.html \\\\v800020\\Publish\\sf_builds\\$project\\builds\\$codeline\\$buildid";
   672 print "Exec: $copy_cmd\n";
   672 print "Exec: $copy_cmd\n";
   673 system($copy_cmd);
   673 system($copy_cmd);
   674 
   674 
   675 
   675