Skip to content

Commit d8717cd

Browse files
committed
all: Update import paths to gohugoio/hugo
1 parent 2d08a29 commit d8717cd

File tree

169 files changed

+355
-355
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

169 files changed

+355
-355
lines changed

‎Makefile‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# A Self-Documenting Makefile: http://marmelab.com/blog/2016/02/29/auto-documented-makefile.html
22

3-
PACKAGE = github.com/spf13/hugo
3+
PACKAGE = github.com/gohugoio/hugo
44
COMMIT_HASH = `git rev-parse --short HEAD 2>/dev/null`
55
BUILD_DATE = `date +%FT%T%z`
66
LDFLAGS = -ldflags "-X ${PACKAGE}/hugolib.CommitHash=${COMMIT_HASH} -X ${PACKAGE}/hugolib.BuildDate=${BUILD_DATE}"

‎commands/commandeer.go‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
package commands
1515

1616
import (
17-
"github.com/spf13/hugo/deps"
18-
"github.com/spf13/hugo/helpers"
19-
"github.com/spf13/hugo/hugofs"
17+
"github.com/gohugoio/hugo/deps"
18+
"github.com/gohugoio/hugo/helpers"
19+
"github.com/gohugoio/hugo/hugofs"
2020
)
2121

2222
type commandeer struct {

‎commands/convert.go‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ import (
2121

2222
"github.com/spf13/cast"
2323
"github.com/spf13/cobra"
24-
"github.com/spf13/hugo/hugolib"
25-
"github.com/spf13/hugo/parser"
24+
"github.com/gohugoio/hugo/hugolib"
25+
"github.com/gohugoio/hugo/parser"
2626
)
2727

2828
var outputDir string

‎commands/gendoc.go‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ import (
2222

2323
"github.com/spf13/cobra"
2424
"github.com/spf13/cobra/doc"
25-
"github.com/spf13/hugo/helpers"
26-
"github.com/spf13/hugo/hugofs"
25+
"github.com/gohugoio/hugo/helpers"
26+
"github.com/gohugoio/hugo/hugofs"
2727
jww "github.com/spf13/jwalterweatherman"
2828
)
2929

‎commands/gendocshelper.go‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
"path/filepath"
2121

2222
"github.com/spf13/cobra"
23-
"github.com/spf13/hugo/docshelper"
23+
"github.com/gohugoio/hugo/docshelper"
2424
)
2525

2626
type genDocsHelper struct {

‎commands/genman.go‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ import (
1919

2020
"github.com/spf13/cobra"
2121
"github.com/spf13/cobra/doc"
22-
"github.com/spf13/hugo/helpers"
23-
"github.com/spf13/hugo/hugofs"
22+
"github.com/gohugoio/hugo/helpers"
23+
"github.com/gohugoio/hugo/hugofs"
2424
jww "github.com/spf13/jwalterweatherman"
2525
)
2626

‎commands/hugo.go‎

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919
"fmt"
2020
"io/ioutil"
2121

22-
"github.com/spf13/hugo/hugofs"
22+
"github.com/gohugoio/hugo/hugofs"
2323

2424
"log"
2525
"net/http"
@@ -30,9 +30,9 @@ import (
3030
"sync"
3131
"time"
3232

33-
"github.com/spf13/hugo/config"
33+
"github.com/gohugoio/hugo/config"
3434

35-
"github.com/spf13/hugo/parser"
35+
"github.com/gohugoio/hugo/parser"
3636
flag "github.com/spf13/pflag"
3737

3838
"regexp"
@@ -41,12 +41,12 @@ import (
4141
"github.com/spf13/afero"
4242
"github.com/spf13/cobra"
4343
"github.com/spf13/fsync"
44-
"github.com/spf13/hugo/deps"
45-
"github.com/spf13/hugo/helpers"
46-
"github.com/spf13/hugo/hugolib"
47-
"github.com/spf13/hugo/livereload"
48-
"github.com/spf13/hugo/utils"
49-
"github.com/spf13/hugo/watcher"
44+
"github.com/gohugoio/hugo/deps"
45+
"github.com/gohugoio/hugo/helpers"
46+
"github.com/gohugoio/hugo/hugolib"
47+
"github.com/gohugoio/hugo/livereload"
48+
"github.com/gohugoio/hugo/utils"
49+
"github.com/gohugoio/hugo/watcher"
5050
jww "github.com/spf13/jwalterweatherman"
5151
"github.com/spf13/nitro"
5252
"github.com/spf13/viper"

‎commands/import_jekyll.go‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ import (
2828
"github.com/spf13/afero"
2929
"github.com/spf13/cast"
3030
"github.com/spf13/cobra"
31-
"github.com/spf13/hugo/helpers"
32-
"github.com/spf13/hugo/hugofs"
33-
"github.com/spf13/hugo/hugolib"
34-
"github.com/spf13/hugo/parser"
31+
"github.com/gohugoio/hugo/helpers"
32+
"github.com/gohugoio/hugo/hugofs"
33+
"github.com/gohugoio/hugo/hugolib"
34+
"github.com/gohugoio/hugo/parser"
3535
jww "github.com/spf13/jwalterweatherman"
3636
)
3737

‎commands/list.go‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717
"path/filepath"
1818

1919
"github.com/spf13/cobra"
20-
"github.com/spf13/hugo/hugolib"
20+
"github.com/gohugoio/hugo/hugolib"
2121
jww "github.com/spf13/jwalterweatherman"
2222
)
2323

‎commands/new.go‎

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ import (
2424

2525
"github.com/spf13/afero"
2626
"github.com/spf13/cobra"
27-
"github.com/spf13/hugo/create"
28-
"github.com/spf13/hugo/helpers"
29-
"github.com/spf13/hugo/hugofs"
30-
"github.com/spf13/hugo/hugolib"
31-
"github.com/spf13/hugo/parser"
27+
"github.com/gohugoio/hugo/create"
28+
"github.com/gohugoio/hugo/helpers"
29+
"github.com/gohugoio/hugo/hugofs"
30+
"github.com/gohugoio/hugo/hugolib"
31+
"github.com/gohugoio/hugo/parser"
3232
jww "github.com/spf13/jwalterweatherman"
3333
"github.com/spf13/viper"
3434
)

0 commit comments

Comments
 (0)