tpl: Prevent isBaseTemplate() from matching "baseof" in dir

Fixes #4809
This commit is contained in:
Anthony Fok 2018-06-03 05:45:33 -06:00 committed by Bjørn Erik Pedersen
parent 0c6c98e401
commit c3115292a7

View File

@ -726,5 +726,5 @@ func isBackupFile(path string) bool {
const baseFileBase = "baseof"
func isBaseTemplate(path string) bool {
return strings.Contains(path, baseFileBase)
return strings.Contains(filepath.Base(path), baseFileBase)
}