configExistsInPath checks whether a devspace configuration exists at a certain path
(path string)
| 566 | |
| 567 | // configExistsInPath checks whether a devspace configuration exists at a certain path |
| 568 | func configExistsInPath(path string) bool { |
| 569 | _, err := os.Stat(path) |
| 570 | return err == nil // false, no config file found |
| 571 | } |
| 572 | |
| 573 | // LoadRaw loads the raw config |
| 574 | func (l *configLoader) LoadRaw() (map[string]interface{}, error) { |
no outgoing calls
no test coverage detected