mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-22 21:42:50 +02:00
Use filepath.Join in locale resource getting
This commit is contained in:
@@ -158,15 +158,7 @@ func resGetRemote(url string, fs afero.Fs, hc *http.Client) ([]byte, error) {
|
|||||||
|
|
||||||
// resGetLocal loads the content of a local file
|
// resGetLocal loads the content of a local file
|
||||||
func resGetLocal(url string, fs afero.Fs) ([]byte, error) {
|
func resGetLocal(url string, fs afero.Fs) ([]byte, error) {
|
||||||
p := ""
|
filename := filepath.Join(viper.GetString("WorkingDir"), url)
|
||||||
workingDir := viper.GetString("WorkingDir")
|
|
||||||
if workingDir != "" {
|
|
||||||
p = workingDir
|
|
||||||
if !strings.HasSuffix(p, helpers.FilePathSeparator) {
|
|
||||||
p = p + helpers.FilePathSeparator
|
|
||||||
}
|
|
||||||
}
|
|
||||||
filename := p + url
|
|
||||||
if e, err := helpers.Exists(filename, fs); !e {
|
if e, err := helpers.Exists(filename, fs); !e {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user