(directory string)
| 429 | } |
| 430 | |
| 431 | func getRecursiveGlobPattern(directory string) string { |
| 432 | return fmt.Sprintf("%s/%s", tspath.RemoveTrailingDirectorySeparator(directory), "**/*") |
| 433 | } |
| 434 | |
| 435 | // recursiveDirectoryGlobPattern returns the string form of a recursive watcher |
| 436 | // for the given directory that would be produced by newRecursiveDirectoryWatcher. |
no test coverage detected