mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-15 20:44:01 +02:00
Do not return empty theme dirs
This prevents reading data etc. from the root. Fixes #2320
This commit is contained in:
@@ -183,13 +183,15 @@ func GetThemeDataDirPath() (string, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func getThemeDirPath(path string) (string, error) {
|
func getThemeDirPath(path string) (string, error) {
|
||||||
var themeDir string
|
if !ThemeSet() {
|
||||||
if ThemeSet() {
|
return "", errors.New("No theme set")
|
||||||
themeDir = filepath.Join(GetThemeDir(), path)
|
|
||||||
if _, err := os.Stat(themeDir); os.IsNotExist(err) {
|
|
||||||
return "", fmt.Errorf("Unable to find %s directory for theme %s in %s", path, viper.GetString("theme"), themeDir)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
themeDir := filepath.Join(GetThemeDir(), path)
|
||||||
|
if _, err := os.Stat(themeDir); os.IsNotExist(err) {
|
||||||
|
return "", fmt.Errorf("Unable to find %s directory for theme %s in %s", path, viper.GetString("theme"), themeDir)
|
||||||
|
}
|
||||||
|
|
||||||
return themeDir, nil
|
return themeDir, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user