summaryrefslogtreecommitdiffstats
path: root/tpl/os
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 /tpl/os
parent2d08a296a2de3b3db209a0f44249b7b24733098e (diff)
all: Update import paths to gohugoio/hugo
Diffstat (limited to 'tpl/os')
-rw-r--r--tpl/os/init.go4
-rw-r--r--tpl/os/init_test.go4
-rw-r--r--tpl/os/os.go2
-rw-r--r--tpl/os/os_test.go4
4 files changed, 7 insertions, 7 deletions
diff --git a/tpl/os/init.go b/tpl/os/init.go
index e0bcda140..3fc3308f2 100644
--- a/tpl/os/init.go
+++ b/tpl/os/init.go
@@ -14,8 +14,8 @@
package os
import (
- "github.com/spf13/hugo/deps"
- "github.com/spf13/hugo/tpl/internal"
+ "github.com/gohugoio/hugo/deps"
+ "github.com/gohugoio/hugo/tpl/internal"
)
const name = "os"
diff --git a/tpl/os/init_test.go b/tpl/os/init_test.go
index 954e4cde2..08d816cdf 100644
--- a/tpl/os/init_test.go
+++ b/tpl/os/init_test.go
@@ -16,8 +16,8 @@ package os
import (
"testing"
- "github.com/spf13/hugo/deps"
- "github.com/spf13/hugo/tpl/internal"
+ "github.com/gohugoio/hugo/deps"
+ "github.com/gohugoio/hugo/tpl/internal"
"github.com/stretchr/testify/require"
)
diff --git a/tpl/os/os.go b/tpl/os/os.go
index 03e16e5a9..4addae5a6 100644
--- a/tpl/os/os.go
+++ b/tpl/os/os.go
@@ -20,7 +20,7 @@ import (
"github.com/spf13/afero"
"github.com/spf13/cast"
- "github.com/spf13/hugo/deps"
+ "github.com/gohugoio/hugo/deps"
)
// New returns a new instance of the os-namespaced template functions.
diff --git a/tpl/os/os_test.go b/tpl/os/os_test.go
index 166df5e51..772fcb76a 100644
--- a/tpl/os/os_test.go
+++ b/tpl/os/os_test.go
@@ -19,8 +19,8 @@ import (
"testing"
"github.com/spf13/afero"
- "github.com/spf13/hugo/deps"
- "github.com/spf13/hugo/hugofs"
+ "github.com/gohugoio/hugo/deps"
+ "github.com/gohugoio/hugo/hugofs"
"github.com/spf13/viper"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"