Skip to content

Commit

Permalink
Make Hugo build without Mercurial
Browse files Browse the repository at this point in the history
By creating a fork of the Bitbucket inflect repo. It hasn't changed since 2013,
so it must be considered pretty stable.

Fixes #2062
  • Loading branch information
bep committed Apr 8, 2016
1 parent ebf3cef commit f2ff77f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion hugolib/site.go
Expand Up @@ -31,7 +31,7 @@ import (

"path"

"bitbucket.org/pkg/inflect"
"github.com/bep/inflect"
"github.com/spf13/afero"
"github.com/spf13/cast"
bp "github.com/spf13/hugo/bufferpool"
Expand Down
2 changes: 1 addition & 1 deletion hugolib/site_test.go
Expand Up @@ -23,7 +23,7 @@ import (
"testing"
"time"

"bitbucket.org/pkg/inflect"
"github.com/bep/inflect"

"github.com/spf13/hugo/helpers"
"github.com/spf13/hugo/hugofs"
Expand Down
7 changes: 4 additions & 3 deletions tpl/template_funcs.go
Expand Up @@ -24,8 +24,6 @@ import (
"encoding/json"
"errors"
"fmt"
"github.com/spf13/afero"
"github.com/spf13/hugo/hugofs"
"html"
"html/template"
"math/rand"
Expand All @@ -39,7 +37,10 @@ import (
"time"
"unicode/utf8"

"bitbucket.org/pkg/inflect"
"github.com/spf13/afero"
"github.com/spf13/hugo/hugofs"

"github.com/bep/inflect"

"github.com/spf13/cast"
"github.com/spf13/hugo/helpers"
Expand Down

0 comments on commit f2ff77f

Please sign in to comment.