summaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
Diffstat (limited to 'commands')
-rw-r--r--commands/commandeer.go6
-rw-r--r--commands/convert.go4
-rw-r--r--commands/gendoc.go4
-rw-r--r--commands/gendocshelper.go2
-rw-r--r--commands/genman.go4
-rw-r--r--commands/hugo.go18
-rw-r--r--commands/import_jekyll.go8
-rw-r--r--commands/list.go2
-rw-r--r--commands/new.go10
-rw-r--r--commands/new_test.go2
-rw-r--r--commands/release.go2
-rw-r--r--commands/server.go4
-rw-r--r--commands/undraft.go2
-rw-r--r--commands/undraft_test.go2
-rw-r--r--commands/version.go4
15 files changed, 37 insertions, 37 deletions
diff --git a/commands/commandeer.go b/commands/commandeer.go
index 7f7e20f7b..7de185d2f 100644
--- a/commands/commandeer.go
+++ b/commands/commandeer.go
@@ -14,9 +14,9 @@
package commands
import (
- "github.com/spf13/hugo/deps"
- "github.com/spf13/hugo/helpers"
- "github.com/spf13/hugo/hugofs"
+ "github.com/gohugoio/hugo/deps"
+ "github.com/gohugoio/hugo/helpers"
+ "github.com/gohugoio/hugo/hugofs"
)
type commandeer struct {
diff --git a/commands/convert.go b/commands/convert.go
index 034d5bf55..15273b0c5 100644
--- a/commands/convert.go
+++ b/commands/convert.go
@@ -21,8 +21,8 @@ import (
"github.com/spf13/cast"
"github.com/spf13/cobra"
- "github.com/spf13/hugo/hugolib"
- "github.com/spf13/hugo/parser"
+ "github.com/gohugoio/hugo/hugolib"
+ "github.com/gohugoio/hugo/parser"
)
var outputDir string
diff --git a/commands/gendoc.go b/commands/gendoc.go
index 8f2414465..70e87dd6f 100644
--- a/commands/gendoc.go
+++ b/commands/gendoc.go
@@ -22,8 +22,8 @@ import (
"github.com/spf13/cobra"
"github.com/spf13/cobra/doc"
- "github.com/spf13/hugo/helpers"
- "github.com/spf13/hugo/hugofs"
+ "github.com/gohugoio/hugo/helpers"
+ "github.com/gohugoio/hugo/hugofs"
jww "github.com/spf13/jwalterweatherman"
)
diff --git a/commands/gendocshelper.go b/commands/gendocshelper.go
index a5080687f..1d83232ec 100644
--- a/commands/gendocshelper.go
+++ b/commands/gendocshelper.go
@@ -20,7 +20,7 @@ import (
"path/filepath"
"github.com/spf13/cobra"
- "github.com/spf13/hugo/docshelper"
+ "github.com/gohugoio/hugo/docshelper"
)
type genDocsHelper struct {
diff --git a/commands/genman.go b/commands/genman.go
index cd5c8c84e..dd85a6e6a 100644
--- a/commands/genman.go
+++ b/commands/genman.go
@@ -19,8 +19,8 @@ import (
"github.com/spf13/cobra"
"github.com/spf13/cobra/doc"
- "github.com/spf13/hugo/helpers"
- "github.com/spf13/hugo/hugofs"
+ "github.com/gohugoio/hugo/helpers"
+ "github.com/gohugoio/hugo/hugofs"
jww "github.com/spf13/jwalterweatherman"
)
diff --git a/commands/hugo.go b/commands/hugo.go
index 16170acd4..d354b01ac 100644
--- a/commands/hugo.go
+++ b/commands/hugo.go
@@ -19,7 +19,7 @@ import (
"fmt"
"io/ioutil"
- "github.com/spf13/hugo/hugofs"
+ "github.com/gohugoio/hugo/hugofs"
"log"
"net/http"
@@ -30,9 +30,9 @@ import (
"sync"
"time"
- "github.com/spf13/hugo/config"
+ "github.com/gohugoio/hugo/config"
- "github.com/spf13/hugo/parser"
+ "github.com/gohugoio/hugo/parser"
flag "github.com/spf13/pflag"
"regexp"
@@ -41,12 +41,12 @@ import (
"github.com/spf13/afero"
"github.com/spf13/cobra"
"github.com/spf13/fsync"
- "github.com/spf13/hugo/deps"
- "github.com/spf13/hugo/helpers"
- "github.com/spf13/hugo/hugolib"
- "github.com/spf13/hugo/livereload"
- "github.com/spf13/hugo/utils"
- "github.com/spf13/hugo/watcher"
+ "github.com/gohugoio/hugo/deps"
+ "github.com/gohugoio/hugo/helpers"
+ "github.com/gohugoio/hugo/hugolib"
+ "github.com/gohugoio/hugo/livereload"
+ "github.com/gohugoio/hugo/utils"
+ "github.com/gohugoio/hugo/watcher"
jww "github.com/spf13/jwalterweatherman"
"github.com/spf13/nitro"
"github.com/spf13/viper"
diff --git a/commands/import_jekyll.go b/commands/import_jekyll.go
index a7524c1a4..37f06bb2f 100644
--- a/commands/import_jekyll.go
+++ b/commands/import_jekyll.go
@@ -28,10 +28,10 @@ import (
"github.com/spf13/afero"
"github.com/spf13/cast"
"github.com/spf13/cobra"
- "github.com/spf13/hugo/helpers"
- "github.com/spf13/hugo/hugofs"
- "github.com/spf13/hugo/hugolib"
- "github.com/spf13/hugo/parser"
+ "github.com/gohugoio/hugo/helpers"
+ "github.com/gohugoio/hugo/hugofs"
+ "github.com/gohugoio/hugo/hugolib"
+ "github.com/gohugoio/hugo/parser"
jww "github.com/spf13/jwalterweatherman"
)
diff --git a/commands/list.go b/commands/list.go
index 97753cc88..4f3319c57 100644
--- a/commands/list.go
+++ b/commands/list.go
@@ -17,7 +17,7 @@ import (
"path/filepath"
"github.com/spf13/cobra"
- "github.com/spf13/hugo/hugolib"
+ "github.com/gohugoio/hugo/hugolib"
jww "github.com/spf13/jwalterweatherman"
)
diff --git a/commands/new.go b/commands/new.go
index fa996fdea..8ff5f1b80 100644
--- a/commands/new.go
+++ b/commands/new.go
@@ -24,11 +24,11 @@ import (
"github.com/spf13/afero"
"github.com/spf13/cobra"
- "github.com/spf13/hugo/create"
- "github.com/spf13/hugo/helpers"
- "github.com/spf13/hugo/hugofs"
- "github.com/spf13/hugo/hugolib"
- "github.com/spf13/hugo/parser"
+ "github.com/gohugoio/hugo/create"
+ "github.com/gohugoio/hugo/helpers"
+ "github.com/gohugoio/hugo/hugofs"
+ "github.com/gohugoio/hugo/hugolib"
+ "github.com/gohugoio/hugo/parser"
jww "github.com/spf13/jwalterweatherman"
"github.com/spf13/viper"
)
diff --git a/commands/new_test.go b/commands/new_test.go
index dafe0400c..c9adb83d4 100644
--- a/commands/new_test.go
+++ b/commands/new_test.go
@@ -17,7 +17,7 @@ import (
"path/filepath"
"testing"
- "github.com/spf13/hugo/hugofs"
+ "github.com/gohugoio/hugo/hugofs"
"github.com/spf13/viper"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
diff --git a/commands/release.go b/commands/release.go
index 6c14c5d8b..c306b2c2b 100644
--- a/commands/release.go
+++ b/commands/release.go
@@ -17,7 +17,7 @@ package commands
import (
"github.com/spf13/cobra"
- "github.com/spf13/hugo/releaser"
+ "github.com/gohugoio/hugo/releaser"
)
func init() {
diff --git a/commands/server.go b/commands/server.go
index bb0f19cfa..0c16b959f 100644
--- a/commands/server.go
+++ b/commands/server.go
@@ -26,8 +26,8 @@ import (
"github.com/spf13/afero"
"github.com/spf13/cobra"
- "github.com/spf13/hugo/config"
- "github.com/spf13/hugo/helpers"
+ "github.com/gohugoio/hugo/config"
+ "github.com/gohugoio/hugo/helpers"
jww "github.com/spf13/jwalterweatherman"
)
diff --git a/commands/undraft.go b/commands/undraft.go
index 4f3bcfe23..ae17ab34d 100644
--- a/commands/undraft.go
+++ b/commands/undraft.go
@@ -20,7 +20,7 @@ import (
"time"
"github.com/spf13/cobra"
- "github.com/spf13/hugo/parser"
+ "github.com/gohugoio/hugo/parser"
)
var undraftCmd = &cobra.Command{
diff --git a/commands/undraft_test.go b/commands/undraft_test.go
index d302d31c5..7f32c7e20 100644
--- a/commands/undraft_test.go
+++ b/commands/undraft_test.go
@@ -21,7 +21,7 @@ import (
"testing"
"time"
- "github.com/spf13/hugo/parser"
+ "github.com/gohugoio/hugo/parser"
)
var (
diff --git a/commands/version.go b/commands/version.go
index 9e673b817..a05967d21 100644
--- a/commands/version.go
+++ b/commands/version.go
@@ -22,8 +22,8 @@ import (
"github.com/kardianos/osext"
"github.com/spf13/cobra"
- "github.com/spf13/hugo/helpers"
- "github.com/spf13/hugo/hugolib"
+ "github.com/gohugoio/hugo/helpers"
+ "github.com/gohugoio/hugo/hugolib"
jww "github.com/spf13/jwalterweatherman"
)