(path string)
| 72 | } |
| 73 | |
| 74 | func isModifiedConfig(path string) bool { |
| 75 | if filepath.Base(path) == configfile.DefaultName { |
| 76 | return !devconfig.IsDefault(path) |
| 77 | } |
| 78 | return false |
| 79 | } |
| 80 | |
| 81 | // urlIsArchive checks if a file URL points to an archive file |
| 82 | func urlIsArchive(url string) (bool, error) { |
no test coverage detected