summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2017-06-13 18:42:45 +0200
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2017-06-13 18:42:45 +0200
commitd8717cd4c74e80ea8e20adead9321412a2d76022 (patch)
tree50b934ea1c1b67ac0911785c273027eca3e4894c /source
parent2d08a296a2de3b3db209a0f44249b7b24733098e (diff)
all: Update import paths to gohugoio/hugo
Diffstat (limited to 'source')
-rw-r--r--source/content_directory_test.go2
-rw-r--r--source/file.go6
-rw-r--r--source/file_test.go2
-rw-r--r--source/filesystem.go2
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"
)