diff --git a/README.md b/README.md index ff894ea..b315e65 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,14 @@ # xc - Simple, Convenient, Markdown defined task runner. -[](https://github.com/joe-davidson1802/xc/actions/workflows/test.yaml) -[](https://github.com/joe-davidson1802/xc/actions/workflows/docs.yml) -[](https://pkg.go.dev/github.com/joe-davidson1802/xc) +[](https://github.com/joerdav/xc/actions/workflows/test.yaml) +[](https://github.com/joerdav/xc/actions/workflows/docs.yml) +[](https://pkg.go.dev/github.com/joerdav/xc)  -[Docs](https://xcfile.dev/) | [Getting Started](https://xcfile.dev/getting-started/) | [Github](https://github.com/joe-davidson1802/xc) +[Docs](https://xcfile.dev/) | [Getting Started](https://xcfile.dev/getting-started/) | [Github](https://github.com/joerdav/xc) `xc` is a task runner designed to maximise convenience, and minimise complexity. @@ -23,7 +23,7 @@ Each `xc` task is defined in simple, human-readable Markdown. Meaning that for p # Example -Take the `tag` task in the [README.md](https://github.com/joe-davidson1802/xc#tag) of the `xc` repository: +Take the `tag` task in the [README.md](https://github.com/joerdav/xc#tag) of the `xc` repository: ```` ## tag @@ -45,17 +45,17 @@ The task could be run simply with `xc tag`, but a side-effect of it being an `xc ``` $ xc tag go test ./... -? github.com/joe-davidson1802/xc/cmd/xc [no test files] -? github.com/joe-davidson1802/xc/models [no test files] -ok github.com/joe-davidson1802/xc/parser (cached) -ok github.com/joe-davidson1802/xc/run (cached) +? github.com/joerdav/xc/cmd/xc [no test files] +? github.com/joerdav/xc/models [no test files] +ok github.com/joerdav/xc/parser (cached) +ok github.com/joerdav/xc/run (cached) export VERSION=78 echo Adding git tag with version v0.0.78 Adding git tag with version v0.0.78 git tag v0.0.78 git push origin v0.0.78 Total 0 (delta 0), reused 0 (delta 0), pack-reused 0 -To github.com:joe-davidson1802/xc +To github.com:joerdav/xc * [new tag] v0.0.78 -> v0.0.78 ``` diff --git a/cmd/xc/main.go b/cmd/xc/main.go index 0d359f5..1d8a5b9 100644 --- a/cmd/xc/main.go +++ b/cmd/xc/main.go @@ -9,9 +9,9 @@ import ( "runtime/debug" "strings" - "github.com/joe-davidson1802/xc/models" - "github.com/joe-davidson1802/xc/parser" - "github.com/joe-davidson1802/xc/run" + "github.com/joerdav/xc/models" + "github.com/joerdav/xc/parser" + "github.com/joerdav/xc/run" "github.com/posener/complete" ) diff --git a/doc/config.yml b/doc/config.yml index 43e40f2..55a0241 100644 --- a/doc/config.yml +++ b/doc/config.yml @@ -24,7 +24,7 @@ menu: identifier: task-syntax weight: 5 - name: pkg.go.dev → - url: https://pkg.go.dev/github.com/joe-davidson1802/xc + url: https://pkg.go.dev/github.com/joerdav/xc weight: 100 security: diff --git a/doc/content/_introduction.md b/doc/content/_introduction.md index ff894ea..b315e65 100644 --- a/doc/content/_introduction.md +++ b/doc/content/_introduction.md @@ -1,14 +1,14 @@ # xc - Simple, Convenient, Markdown defined task runner. -[](https://github.com/joe-davidson1802/xc/actions/workflows/test.yaml) -[](https://github.com/joe-davidson1802/xc/actions/workflows/docs.yml) -[](https://pkg.go.dev/github.com/joe-davidson1802/xc) +[](https://github.com/joerdav/xc/actions/workflows/test.yaml) +[](https://github.com/joerdav/xc/actions/workflows/docs.yml) +[](https://pkg.go.dev/github.com/joerdav/xc)  -[Docs](https://xcfile.dev/) | [Getting Started](https://xcfile.dev/getting-started/) | [Github](https://github.com/joe-davidson1802/xc) +[Docs](https://xcfile.dev/) | [Getting Started](https://xcfile.dev/getting-started/) | [Github](https://github.com/joerdav/xc) `xc` is a task runner designed to maximise convenience, and minimise complexity. @@ -23,7 +23,7 @@ Each `xc` task is defined in simple, human-readable Markdown. Meaning that for p # Example -Take the `tag` task in the [README.md](https://github.com/joe-davidson1802/xc#tag) of the `xc` repository: +Take the `tag` task in the [README.md](https://github.com/joerdav/xc#tag) of the `xc` repository: ```` ## tag @@ -45,17 +45,17 @@ The task could be run simply with `xc tag`, but a side-effect of it being an `xc ``` $ xc tag go test ./... -? github.com/joe-davidson1802/xc/cmd/xc [no test files] -? github.com/joe-davidson1802/xc/models [no test files] -ok github.com/joe-davidson1802/xc/parser (cached) -ok github.com/joe-davidson1802/xc/run (cached) +? github.com/joerdav/xc/cmd/xc [no test files] +? github.com/joerdav/xc/models [no test files] +ok github.com/joerdav/xc/parser (cached) +ok github.com/joerdav/xc/run (cached) export VERSION=78 echo Adding git tag with version v0.0.78 Adding git tag with version v0.0.78 git tag v0.0.78 git push origin v0.0.78 Total 0 (delta 0), reused 0 (delta 0), pack-reused 0 -To github.com:joe-davidson1802/xc +To github.com:joerdav/xc * [new tag] v0.0.78 -> v0.0.78 ``` diff --git a/doc/content/getting-started.md b/doc/content/getting-started.md index 8b49ba6..61b5926 100644 --- a/doc/content/getting-started.md +++ b/doc/content/getting-started.md @@ -9,16 +9,16 @@ weight: -7 ## Installation {{% details "Binary" %}} -Download the binary from [GitHub Releases](https://github.com/joe-davidson1802/xc/releases) and add to your `$PATH` +Download the binary from [GitHub Releases](https://github.com/joerdav/xc/releases) and add to your `$PATH` {{% /details %}} {{% details "Go Install" %}} ```sh -go install github.com/joe-davidson1802/xc/cmd/xc@latest +go install github.com/joerdav/xc/cmd/xc@latest ``` {{% /details %}} {{% details "Homebrew" %}} ```sh -brew tap joe-davidson1802/xc +brew tap joerdav/xc brew install xc ``` {{% /details %}} diff --git a/doc/layouts/_default/single.html b/doc/layouts/_default/single.html index 13cd216..63fcf06 100644 --- a/doc/layouts/_default/single.html +++ b/doc/layouts/_default/single.html @@ -5,7 +5,7 @@