Make error about tool version mismatch clearer
parent
622dce1a74
commit
91c83eda71
|
@ -76,7 +76,7 @@ class BinExt
|
||||||
$version = trim($out);
|
$version = trim($out);
|
||||||
$target = self::EXIFTOOL_VER;
|
$target = self::EXIFTOOL_VER;
|
||||||
if (!version_compare($version, $target, '=')) {
|
if (!version_compare($version, $target, '=')) {
|
||||||
throw new \Exception("version does not match {$version} <==> {$target}");
|
throw new \Exception("exiftool version does not match: expected {$target} but found {$version}");
|
||||||
}
|
}
|
||||||
|
|
||||||
// Test with actual file
|
// Test with actual file
|
||||||
|
@ -338,7 +338,7 @@ class BinExt
|
||||||
$version = $json['version'];
|
$version = $json['version'];
|
||||||
$target = self::GOVOD_VER;
|
$target = self::GOVOD_VER;
|
||||||
if (!version_compare($version, $target, '=')) {
|
if (!version_compare($version, $target, '=')) {
|
||||||
throw new \Exception("version does not match {$version} <==> {$target}");
|
throw new \Exception("govod version does not match: expected {$target} but found {$version}");
|
||||||
}
|
}
|
||||||
|
|
||||||
return $version;
|
return $version;
|
||||||
|
|
Loading…
Reference in New Issue