You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(rsync,ssh,sshfs): do not generate regular files *'\' as dirs
In sed, /[^\/]/ does not mean "a character that is not a slash". It
means "a character that is not a backslash or a slash". In the
bracket expressions [...], slashes do not need to be escaped by a
backslash, and also, a backslash is treated literally. We should
instead use /[^/]/.
0 commit comments