diff --git a/.goreleaser.yml b/.goreleaser.yml index 5c3fb7b..daa047f 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -4,7 +4,7 @@ builds: env: - CGO_ENABLED=0 ldflags: - - -s -w -X "github.com/markbates/refresh.Version={{.Tag}}" + - -s -w -X "github.com/gobuffalo/refresh.Version={{.Tag}}" goos: - darwin - linux diff --git a/README.md b/README.md index b3a52ba..1e68379 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ This simple command line application will watch your files, trigger a build of y ## Installation ``` -$ go get github.com/markbates/refresh +$ go get github.com/gobuffalo/refresh ``` ## Getting Started diff --git a/cmd/init.go b/cmd/init.go index 70dcf88..d74bffb 100644 --- a/cmd/init.go +++ b/cmd/init.go @@ -4,7 +4,7 @@ import ( "fmt" "os" - "github.com/markbates/refresh/refresh" + "github.com/gobuffalo/refresh/refresh" "github.com/spf13/cobra" ) diff --git a/cmd/run.go b/cmd/run.go index 673805f..111ee4c 100644 --- a/cmd/run.go +++ b/cmd/run.go @@ -6,7 +6,7 @@ import ( "log" "os" - "github.com/markbates/refresh/refresh" + "github.com/gobuffalo/refresh/refresh" "github.com/spf13/cobra" ) diff --git a/go.mod b/go.mod index 1091a26..15c15f4 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/markbates/refresh +module github.com/gobuffalo/refresh go 1.17 diff --git a/main.go b/main.go index a6a9e6d..9e211b9 100644 --- a/main.go +++ b/main.go @@ -1,6 +1,6 @@ package main -import "github.com/markbates/refresh/cmd" +import "github.com/gobuffalo/refresh/cmd" func main() { cmd.Execute() diff --git a/refresh/watcher.go b/refresh/watcher.go index 93d578e..7c20ea5 100644 --- a/refresh/watcher.go +++ b/refresh/watcher.go @@ -8,7 +8,7 @@ import ( "strings" "time" - "github.com/markbates/refresh/filenotify" + "github.com/gobuffalo/refresh/filenotify" ) type Watcher struct { diff --git a/refresh/web/web.go b/refresh/web/web.go index 9672595..8553f3b 100644 --- a/refresh/web/web.go +++ b/refresh/web/web.go @@ -5,7 +5,7 @@ import ( "io/ioutil" "net/http" - "github.com/markbates/refresh/refresh" + "github.com/gobuffalo/refresh/refresh" ) var id = refresh.ID() diff --git a/shoulders.md b/shoulders.md index 201d70e..b92a5f4 100644 --- a/shoulders.md +++ b/shoulders.md @@ -1,6 +1,6 @@ -# github.com/markbates/refresh Stands on the Shoulders of Giants +# github.com/gobuffalo/refresh Stands on the Shoulders of Giants -github.com/markbates/refresh does not try to reinvent the wheel! Instead, it uses the already great wheels developed by the Go community and puts them all together in the best way possible. Without these giants, this project would not be possible. Please make sure to check them out and thank them for all of their hard work. +github.com/gobuffalo/refresh does not try to reinvent the wheel! Instead, it uses the already great wheels developed by the Go community and puts them all together in the best way possible. Without these giants, this project would not be possible. Please make sure to check them out and thank them for all of their hard work. Thank you to the following **GIANTS**: