(fullpath string)
| 198 | } |
| 199 | |
| 200 | func (c *serverCmd) makeSuffixdir(fullpath string) { |
| 201 | if err := os.MkdirAll(fullpath, 0755); err != nil { |
| 202 | log.Fatalf("Could not create %v: %v", fullpath, err) |
| 203 | } |
| 204 | } |
| 205 | |
| 206 | func (c *serverCmd) setEnvVars() error { |
| 207 | c.env.SetCamdevVars(false) |
no test coverage detected