composeFindCmd builds the command counting the objects matching a given path
(path string)
| 708 | |
| 709 | // composeFindCmd builds the command counting the objects matching a given path |
| 710 | func composeFindCmd(path string) string { |
| 711 | return fmt.Sprintf("sh -c '%v | wc -l'", listFilesScript(path)) |
| 712 | } |
| 713 | |
| 714 | // GetFileTags will use the client pod to retrieve the tags in a specified path |
| 715 | func GetFileTags(storeEnv *Env, path string) (TagSet, error) { |
no test coverage detected