Commit fcea8e72 authored by terry%netscape.com's avatar terry%netscape.com

If the version isn't valid, try "other" before giving up.

parent 6c245b99
...@@ -97,7 +97,10 @@ if (lsearch($::components{$prod}, $comp) < 0) { ...@@ -97,7 +97,10 @@ if (lsearch($::components{$prod}, $comp) < 0) {
Punt("component", $comp); Punt("component", $comp);
} }
if (lsearch($::versions{$prod}, $version) < 0) { if (lsearch($::versions{$prod}, $version) < 0) {
Punt("version", $version); $version = "other";
if (lsearch($::versions{$prod}, $version) < 0) {
Punt("version", $version);
}
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment