Function
decorateVersionWithDeployed
(revision resources.Revision, deployedRevisions []resources.Revision)
Source from the content-addressed store, hash-verified
| 124 | } |
| 125 | |
| 126 | func decorateVersionWithDeployed(revision resources.Revision, deployedRevisions []resources.Revision) string { |
| 127 | for _, revDeployed := range deployedRevisions { |
| 128 | if revDeployed.GUID == revision.GUID { |
| 129 | return strconv.Itoa(revision.Version) + "(deployed)" |
| 130 | } |
| 131 | } |
| 132 | return strconv.Itoa(revision.Version) |
| 133 | } |
Tested by
no test coverage detected