summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cmd/ponzu/main.go12
-rw-r--r--cmd/ponzu/new.go2
-rw-r--r--cmd/ponzu/templates/gen-content.tmpl4
-rw-r--r--cmd/ponzu/upgrade.go2
4 files changed, 10 insertions, 10 deletions
diff --git a/cmd/ponzu/main.go b/cmd/ponzu/main.go
index fd64efc..1733484 100644
--- a/cmd/ponzu/main.go
+++ b/cmd/ponzu/main.go
@@ -15,12 +15,12 @@ import (
"strings"
"time"
- _ "github.com/ponzu-cms/ponzu/content"
- "github.com/ponzu-cms/ponzu/system/admin"
- "github.com/ponzu-cms/ponzu/system/api"
- "github.com/ponzu-cms/ponzu/system/api/analytics"
- "github.com/ponzu-cms/ponzu/system/db"
- "github.com/ponzu-cms/ponzu/system/tls"
+ _ "github.com/haturatu/ponzu/content"
+ "github.com/haturatu/ponzu/system/admin"
+ "github.com/haturatu/ponzu/system/api"
+ "github.com/haturatu/ponzu/system/api/analytics"
+ "github.com/haturatu/ponzu/system/db"
+ "github.com/haturatu/ponzu/system/tls"
"github.com/spf13/cobra"
)
diff --git a/cmd/ponzu/new.go b/cmd/ponzu/new.go
index 65d39ee..fafa02b 100644
--- a/cmd/ponzu/new.go
+++ b/cmd/ponzu/new.go
@@ -17,7 +17,7 @@ var newCmd = &cobra.Command{
immediately following the 'new' option in the $GOPATH/src directory. Note:
'new' depends on the program 'git' and possibly a network connection. If
there is no local repository to clone from at the local machine's $GOPATH,
-'new' will attempt to clone the 'github.com/ponzu-cms/ponzu' package from
+'new' will attempt to clone the 'github.com/haturatu/ponzu' package from
over the network.`,
Example: `$ ponzu new github.com/nilslice/proj
> New ponzu project created at $GOPATH/src/github.com/nilslice/proj`,
diff --git a/cmd/ponzu/templates/gen-content.tmpl b/cmd/ponzu/templates/gen-content.tmpl
index 9cfca9d..cb522b2 100644
--- a/cmd/ponzu/templates/gen-content.tmpl
+++ b/cmd/ponzu/templates/gen-content.tmpl
@@ -5,8 +5,8 @@ import (
{{ if .HasReferences }}
"github.com/bosssauce/reference"
{{ end }}
- "github.com/ponzu-cms/ponzu/management/editor"
- "github.com/ponzu-cms/ponzu/system/item"
+ "github.com/haturatu/ponzu/management/editor"
+ "github.com/haturatu/ponzu/system/item"
)
type {{ .Name }} struct {
diff --git a/cmd/ponzu/upgrade.go b/cmd/ponzu/upgrade.go
index b956530..80457f9 100644
--- a/cmd/ponzu/upgrade.go
+++ b/cmd/ponzu/upgrade.go
@@ -15,7 +15,7 @@ var upgradeCmd = &cobra.Command{
Short: "upgrades your project to the current ponzu version",
Long: `Will backup your own custom project code (like content, addons, uploads, etc)
if necessary. Before running '$ ponzu upgrade', you should update the 'ponzu'
-package by running '$ go get -u github.com/ponzu-cms/ponzu/...'`,
+package by running '$ go get -u github.com/haturatu/ponzu/...'`,
Example: `$ ponzu upgrade`,
RunE: func(cmd *cobra.Command, args []string) error {
// confirm since upgrade will replace Ponzu core files