(fullImageName)
| 99 | }; |
| 100 | |
| 101 | let parseVersionTag = function (fullImageName) { |
| 102 | let matches = fullImageName.match(/:[^:]*$/); |
| 103 | if (!matches) { |
| 104 | return ''; |
| 105 | } |
| 106 | return matches[0] || ''; |
| 107 | }; |
| 108 | |
| 109 | let setImageVersionTag = function (imageName, versionTag) { |
| 110 | if (versionTag.indexOf(':') !== 0) { |
no outgoing calls
no test coverage detected
searching dependent graphs…