Replace some leftover os.Stat with hugofs.Source
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 11 Sep 2016 17:59:07 +0000 (19:59 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 11 Sep 2016 18:00:38 +0000 (20:00 +0200)
commands/hugo.go
helpers/path.go
source/filesystem.go

index 628219be38dd45658ab6ff6cfd08cfa0c987d356..339f7648a5beaf7a5a5d6e04e2b389bfe31460d7 100644 (file)
@@ -408,7 +408,7 @@ func InitializeConfig(subCmdVs ...*cobra.Command) error {
 
        themeDir := helpers.GetThemeDir()
        if themeDir != "" {
-               if _, err := os.Stat(themeDir); os.IsNotExist(err) {
+               if _, err := hugofs.Source().Stat(themeDir); os.IsNotExist(err) {
                        return newSystemError("Unable to find theme Directory:", themeDir)
                }
        }
@@ -593,7 +593,7 @@ func getDirList() []string {
                                jww.ERROR.Printf("Cannot read symbolic link '%s', error was: %s", path, err)
                                return nil
                        }
-                       linkfi, err := os.Stat(link)
+                       linkfi, err := hugofs.Source().Stat(link)
                        if err != nil {
                                jww.ERROR.Printf("Cannot stat '%s', error was: %s", link, err)
                                return nil
index 478512efacf0141fabd3236509c5e5c380b1e9e3..b7e6f51a9bc7673000d926b1d1375ea6802d75ba 100644 (file)
@@ -23,6 +23,8 @@ import (
        "strings"
        "unicode"
 
+       "github.com/spf13/hugo/hugofs"
+
        "github.com/spf13/afero"
        "github.com/spf13/viper"
        "golang.org/x/text/transform"
@@ -194,7 +196,7 @@ func getThemeDirPath(path string) (string, error) {
        }
 
        themeDir := filepath.Join(GetThemeDir(), path)
-       if _, err := os.Stat(themeDir); os.IsNotExist(err) {
+       if _, err := hugofs.Source().Stat(themeDir); os.IsNotExist(err) {
                return "", fmt.Errorf("Unable to find %s directory for theme %s in %s", path, viper.GetString("theme"), themeDir)
        }
 
index 82bcad6e631b31049471f03370d03a9589b6518b..5a6e331f11bf8f0f7b9097f24d9368c4c93640cd 100644 (file)
@@ -119,7 +119,7 @@ func (f *Filesystem) shouldRead(filePath string, fi os.FileInfo) (bool, error) {
                        jww.ERROR.Printf("Cannot read symbolic link '%s', error was: %s", filePath, err)
                        return false, nil
                }
-               linkfi, err := os.Stat(link)
+               linkfi, err := hugofs.Source().Stat(link)
                if err != nil {
                        jww.ERROR.Printf("Cannot stat '%s', error was: %s", link, err)
                        return false, nil