sbi_win.pl #1

  • //
  • cbd/
  • main/
  • scripts/
  • sbi_win.pl
  • View
  • Commits
  • Open Download .zip Download (282 B)
#!perl -w

use strict;

my $Log="C:\\p4\\CBDTest\\logs\\sbi.log";
my $Output;

open (LOG, ">$Log") or die "\nError: Log is bogus!\n";

while (<STDIN>) {
   print LOG;
}

close (LOG);

$Output = `TYPE $Log 2>&1`;

print "action: REJECT\n";
print "message: \"$Output\"\n";

exit (1);
# Change User Description Committed
#1 21633 C. Thomas Tyler Populate -o //guest/perforce_software/cbd/main/...
//cbd/main/....
//guest/perforce_software/cbd/main/scripts/sbi_win.pl
#3 15151 C. Thomas Tyler Partial Copy Up to main from ntx64 for CBD, using:
p4 copy -r -b perforce_software-cbd-ntx64

Then SSTemplateUpdate.py was reverted, as it has changes in the
ntx64 development branch not yet ready for general consumption.
#2 15043 C. Thomas Tyler Merging using perforce_software-cbd-dev
#1 13835 C. Thomas Tyler Added Windows support for server-side components.
These changes should not interfere with Linux operation.
Includes:
* Sample Windows broker config file.
* Windows batch file wrapper scripts.
* Code changes to support minor variations for
Windows and Linux SDP.
* Some defensive coding to avoid an exception to avoid
processing a Classic workspace.
//guest/perforce_software/cbd/ntx64/scripts/sbi_win.pl
#1 13812 C. Thomas Tyler Ported 'p4 sbi' utility  to Windows.