RemoveGlobalProjectInfo deletes the project from DdevProjectList
()
| 3439 | |
| 3440 | // RemoveGlobalProjectInfo deletes the project from DdevProjectList |
| 3441 | func (app *DdevApp) RemoveGlobalProjectInfo() { |
| 3442 | if err := globalconfig.RemoveProjectInfo(app.Name); err != nil { |
| 3443 | util.Warning("Unable to remove project info for %s: %v", app.Name, err) |
| 3444 | } |
| 3445 | } |
| 3446 | |
| 3447 | // GetHTTPURL returns the HTTP URL for an app. |
| 3448 | func (app *DdevApp) GetHTTPURL() string { |
no test coverage detected