diff options
author | Bjørn Erik Pedersen <[email protected]> | 2017-06-13 18:42:45 +0200 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2017-06-13 18:42:45 +0200 |
commit | d8717cd4c74e80ea8e20adead9321412a2d76022 (patch) | |
tree | 50b934ea1c1b67ac0911785c273027eca3e4894c /source | |
parent | 2d08a296a2de3b3db209a0f44249b7b24733098e (diff) | |
download | hugo-d8717cd4c74e80ea8e20adead9321412a2d76022.tar.gz hugo-d8717cd4c74e80ea8e20adead9321412a2d76022.zip |
all: Update import paths to gohugoio/hugo
Diffstat (limited to 'source')
-rw-r--r-- | source/content_directory_test.go | 2 | ||||
-rw-r--r-- | source/file.go | 6 | ||||
-rw-r--r-- | source/file_test.go | 2 | ||||
-rw-r--r-- | source/filesystem.go | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/source/content_directory_test.go b/source/content_directory_test.go index 48c3ae903..4ff12af8d 100644 --- a/source/content_directory_test.go +++ b/source/content_directory_test.go @@ -16,7 +16,7 @@ package source import ( "testing" - "github.com/spf13/hugo/hugofs" + "github.com/gohugoio/hugo/hugofs" "github.com/spf13/viper" ) diff --git a/source/file.go b/source/file.go index 13352429e..e2322bc4c 100644 --- a/source/file.go +++ b/source/file.go @@ -18,10 +18,10 @@ import ( "path/filepath" "strings" - "github.com/spf13/hugo/hugofs" + "github.com/gohugoio/hugo/hugofs" - "github.com/spf13/hugo/config" - "github.com/spf13/hugo/helpers" + "github.com/gohugoio/hugo/config" + "github.com/gohugoio/hugo/helpers" ) type SourceSpec struct { diff --git a/source/file_test.go b/source/file_test.go index d87a154f5..a152b4bf5 100644 --- a/source/file_test.go +++ b/source/file_test.go @@ -18,7 +18,7 @@ import ( "strings" "testing" - "github.com/spf13/hugo/hugofs" + "github.com/gohugoio/hugo/hugofs" "github.com/spf13/viper" "github.com/stretchr/testify/assert" diff --git a/source/filesystem.go b/source/filesystem.go index ceea96ea5..e36b02124 100644 --- a/source/filesystem.go +++ b/source/filesystem.go @@ -22,7 +22,7 @@ import ( "strings" "github.com/spf13/cast" - "github.com/spf13/hugo/helpers" + "github.com/gohugoio/hugo/helpers" jww "github.com/spf13/jwalterweatherman" "golang.org/x/text/unicode/norm" ) |