composeListFiles builds the command to list the filenames matching a given path
(path string)
| 697 | |
| 698 | // composeListFiles builds the command to list the filenames matching a given path |
| 699 | func composeListFiles(path string) string { |
| 700 | return fmt.Sprintf("sh -c '%v'", listFilesScript(path)) |
| 701 | } |
| 702 | |
| 703 | // composeCleanFiles builds the command removing every object under the given |
| 704 | // `bucket[/prefix]` path |
no test coverage detected