(value)
| 1258 | return null; |
| 1259 | } |
| 1260 | resolveVariable(value) { |
| 1261 | value = value.replace(/\$\(([^\)]+)\)/g, (offset, value) => { |
| 1262 | if (value in this.environment) |
| 1263 | return this.environment[value]; |
| 1264 | return this.getenv(value); |
| 1265 | }); |
| 1266 | return this.resolveSlash(value); |
| 1267 | } |
| 1268 | selectManifest(builtin) { |
| 1269 | let index; |
| 1270 | if (builtin.manifests.length == 1) |
no test coverage detected