summaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
authorbogem <albertnigma@gmail.com>2016-11-18 22:54:57 +0100
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2016-11-22 23:43:55 +0100
commitdec1706ae0439bc6241332c6c9e7e6a818a203f0 (patch)
tree648cc18cfdef629c87d389bcd37601355dd77bb2 /commands
parent1f130fd69247aa3ae2e08560cd56537b32ef3d80 (diff)
commands, hugolib, parser, tpl: Use errors.New instead of fmt.Errorf
Diffstat (limited to 'commands')
-rw-r--r--commands/convert.go3
-rw-r--r--commands/undraft.go11
2 files changed, 7 insertions, 7 deletions
diff --git a/commands/convert.go b/commands/convert.go
index 56f67f8dc..6e5b5be85 100644
--- a/commands/convert.go
+++ b/commands/convert.go
@@ -14,6 +14,7 @@
package commands
import (
+ "errors"
"fmt"
"path/filepath"
"time"
@@ -100,7 +101,7 @@ func convertContents(mark rune) (err error) {
panic("site.Source not set")
}
if len(site.Source.Files()) < 1 {
- return fmt.Errorf("No source files found")
+ return errors.New("No source files found")
}
contentDir := helpers.AbsPathify(viper.GetString("contentDir"))
diff --git a/commands/undraft.go b/commands/undraft.go
index 5a1ae67a6..72f5b677d 100644
--- a/commands/undraft.go
+++ b/commands/undraft.go
@@ -15,7 +15,7 @@ package commands
import (
"bytes"
- "fmt"
+ "errors"
"os"
"time"
@@ -90,8 +90,7 @@ func undraftContent(p parser.Page) (bytes.Buffer, error) {
// Front Matter
fm := p.FrontMatter()
if fm == nil {
- err := fmt.Errorf("Front Matter was found, nothing was finalized")
- return buff, err
+ return buff, errors.New("Front Matter was found, nothing was finalized")
}
var isDraft, gotDate bool
@@ -101,7 +100,7 @@ L:
switch k {
case "draft":
if !v.(bool) {
- return buff, fmt.Errorf("not a Draft: nothing was done")
+ return buff, errors.New("not a Draft: nothing was done")
}
isDraft = true
if gotDate {
@@ -118,7 +117,7 @@ L:
// if draft wasn't found in FrontMatter, it isn't a draft.
if !isDraft {
- return buff, fmt.Errorf("not a Draft: nothing was done")
+ return buff, errors.New("not a Draft: nothing was done")
}
// get the front matter as bytes and split it into lines
@@ -127,7 +126,7 @@ L:
if len(fmLines) == 1 { // if the result is only 1 element, try to split on dos line endings
fmLines = bytes.Split(fm, []byte("\r\n"))
if len(fmLines) == 1 {
- return buff, fmt.Errorf("unable to split FrontMatter into lines")
+ return buff, errors.New("unable to split FrontMatter into lines")
}
lineEnding = append(lineEnding, []byte("\r\n")...)
} else {