Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
242 B

  1. if (-e $ARGV[0]) {
  2. open FILE, $ARGV[0];
  3. $baseline = <FILE>;
  4. close FILE;
  5. $string = "sdx delta $baseline";
  6. system $string;
  7. } else {
  8. print "usage: DetermineChanges.pl <path to build.baseline>\n";
  9. exit -1;
  10. }