GetRelativeWorkingDirectory returns the relative working directory relative to project root Note that the relative dir is returned as unix-style forward-slashes
()
| 515 | // GetRelativeWorkingDirectory returns the relative working directory relative to project root |
| 516 | // Note that the relative dir is returned as unix-style forward-slashes |
| 517 | func (app *DdevApp) GetRelativeWorkingDirectory() string { |
| 518 | pwd, _ := os.Getwd() |
| 519 | return app.GetRelativeDirectory(pwd) |
| 520 | } |
| 521 | |
| 522 | // HasCustomCert returns true if the project uses a custom certificate |
| 523 | func (app *DdevApp) HasCustomCert() bool { |