()
| 232 | } |
| 233 | |
| 234 | async updateStatus() { |
| 235 | let statusList = await Stack.getStatusList(); |
| 236 | let status = statusList.get(this.name); |
| 237 | |
| 238 | if (status) { |
| 239 | this._status = status; |
| 240 | } else { |
| 241 | this._status = UNKNOWN; |
| 242 | } |
| 243 | } |
| 244 | |
| 245 | /** |
| 246 | * Checks if a compose file exists in the specified directory. |
no test coverage detected