mirror of https://github.com/BOINC/boinc.git
tweak
parent
99571995ef
commit
f9bfe50214
|
@ -68,14 +68,12 @@ requires that results match exactly:
|
||||||
```php
|
```php
|
||||||
#!/usr/bin/env php
|
#!/usr/bin/env php
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
$f1 = $argv[1];
|
$f1 = $argv[1];
|
||||||
$f2 = $argv[2];
|
$f2 = $argv[2];
|
||||||
if (md5_file($f1) != md5_file($f2)) {
|
if (md5_file($f1) != md5_file($f2)) {
|
||||||
fwrite(STDERR, "$f1 and $f2 don't match\n");
|
fwrite(STDERR, "$f1 and $f2 don't match\n");
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue