Changeset 5b5e3a73b309908ff8693c3bf21bf44e916955a5
- Timestamp:
- 11/12/08 21:31:27
(5 years ago)
- Author:
- Mark Harrison <mark@omniti.com>
- git-committer:
- Mark Harrison <mark@omniti.com> 1226525487 +0000
- git-parent:
[4b16ee73e0190d7225a73289a82f583c8dd10bc9]
- git-author:
- Mark Harrison <mark@omniti.com> 1226525487 +0000
- Message:
Return bad when we can't determine what the latest revision is
git-svn-id: https://labs.omniti.com/resmon/trunk@147 8c0face9-b7db-6ec6-c4b3-d5f7145c7d55
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rae22e3b |
r5b5e3a7 |
|
| 33 | 33 | if (/^Last Changed Rev:\s*(\d+)/) { $ur = $1; } |
|---|
| 34 | 34 | } |
|---|
| | 35 | if(!$ur){ return "BAD(Unable to determine latest revision in repository)"; } |
|---|
| 35 | 36 | if($ur <= $mr){ return "OK(rev:$ur)"; } |
|---|
| 36 | 37 | else{ |
|---|