summaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2017-06-13 18:47:17 +0200
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2017-06-13 18:47:17 +0200
commitc17ad675e8fcdb2db40fc50816b8f016bc14294c (patch)
treed79b1dadcef0e0e0258ca42a786f6be8671f90df /commands
parentd8717cd4c74e80ea8e20adead9321412a2d76022 (diff)
all: Update textual references in Go source to point to gohugoio/hugo
Diffstat (limited to 'commands')
-rw-r--r--commands/convert.go2
-rw-r--r--commands/hugo.go2
-rw-r--r--commands/new.go2
3 files changed, 3 insertions, 3 deletions
diff --git a/commands/convert.go b/commands/convert.go
index 15273b0c5..e40f5fa40 100644
--- a/commands/convert.go
+++ b/commands/convert.go
@@ -136,7 +136,7 @@ func convertContents(mark rune) error {
page.SetDir(filepath.Join(contentDir, file.Dir()))
page.SetSourceContent(psr.Content())
if err = page.SetSourceMetaData(metadata, mark); err != nil {
- site.Log.ERROR.Printf("Failed to set source metadata for file %q: %s. For more info see For more info see https://github.com/spf13/hugo/issues/2458", page.FullFilePath(), err)
+ site.Log.ERROR.Printf("Failed to set source metadata for file %q: %s. For more info see For more info see https://github.com/gohugoio/hugo/issues/2458", page.FullFilePath(), err)
continue
}
diff --git a/commands/hugo.go b/commands/hugo.go
index d354b01ac..918e76474 100644
--- a/commands/hugo.go
+++ b/commands/hugo.go
@@ -656,7 +656,7 @@ func (c *commandeer) getDirList() []string {
}
// Skip .git directories.
- // Related to https://github.com/spf13/hugo/issues/3468.
+ // Related to https://github.com/gohugoio/hugo/issues/3468.
if fi.Name() == ".git" {
return nil
}
diff --git a/commands/new.go b/commands/new.go
index 8ff5f1b80..5b48abaf1 100644
--- a/commands/new.go
+++ b/commands/new.go
@@ -311,7 +311,7 @@ func touchFile(fs afero.Fs, x ...string) {
func createThemeMD(fs *hugofs.Fs, inpath string) (err error) {
by := []byte(`# theme.toml template for a Hugo theme
-# See https://github.com/spf13/hugoThemes#themetoml for an example
+# See https://github.com/gohugoio/hugoThemes#themetoml for an example
name = "` + strings.Title(helpers.MakeTitle(filepath.Base(inpath))) + `"
license = "MIT"