2023-10-05 07:35:03 +00:00
|
|
|
//go:build unix
|
2022-05-17 10:14:59 +00:00
|
|
|
|
|
|
|
package cwhub
|
|
|
|
|
|
|
|
import "strings"
|
|
|
|
|
2023-10-04 08:34:10 +00:00
|
|
|
func hasPathSuffix(hubpath string, remotePath string) bool {
|
|
|
|
return strings.HasSuffix(hubpath, remotePath)
|
2022-05-17 10:14:59 +00:00
|
|
|
}
|