(mode os.FileMode, mode2 os.FileMode)
| 402 | } |
| 403 | |
| 404 | func equalFilePermissions(mode os.FileMode, mode2 os.FileMode) bool { |
| 405 | if runtime.GOOS != "linux" && runtime.GOOS != "darwin" { |
| 406 | return true |
| 407 | } |
| 408 | |
| 409 | return mode == mode2 |
| 410 | } |
| 411 | |
| 412 | // Stop stops the sync process |
| 413 | func (s *Sync) Stop(fatalError error) { |
no outgoing calls
no test coverage detected