Skip to content

Commit

Permalink
chore: update path
Browse files Browse the repository at this point in the history
  • Loading branch information
joerdav committed Mar 10, 2022
1 parent 7eb3eb6 commit 0478581
Show file tree
Hide file tree
Showing 12 changed files with 34 additions and 34 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# xc - Simple, Convenient, Markdown defined task runner.


[![test](https://github.com/joe-davidson1802/xc/actions/workflows/test.yaml/badge.svg)](https://github.com/joe-davidson1802/xc/actions/workflows/test.yaml)
[![docs](https://github.com/joe-davidson1802/xc/actions/workflows/docs.yml/badge.svg)](https://github.com/joe-davidson1802/xc/actions/workflows/docs.yml)
[![Go Reference](https://pkg.go.dev/badge/github.com/joe-davidson1802/xc.svg)](https://pkg.go.dev/github.com/joe-davidson1802/xc)
[![test](https://github.com/joerdav/xc/actions/workflows/test.yaml/badge.svg)](https://github.com/joerdav/xc/actions/workflows/test.yaml)
[![docs](https://github.com/joerdav/xc/actions/workflows/docs.yml/badge.svg)](https://github.com/joerdav/xc/actions/workflows/docs.yml)
[![Go Reference](https://pkg.go.dev/badge/github.com/joerdav/xc.svg)](https://pkg.go.dev/github.com/joerdav/xc)

![xc](https://user-images.githubusercontent.com/19927761/156772881-10065864-ff4d-4225-ab2b-5adbbe628845.png)


[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.

Expand All @@ -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
Expand All @@ -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
```

Expand Down
6 changes: 3 additions & 3 deletions cmd/xc/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

Expand Down
2 changes: 1 addition & 1 deletion doc/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
20 changes: 10 additions & 10 deletions doc/content/_introduction.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# xc - Simple, Convenient, Markdown defined task runner.


[![test](https://github.com/joe-davidson1802/xc/actions/workflows/test.yaml/badge.svg)](https://github.com/joe-davidson1802/xc/actions/workflows/test.yaml)
[![docs](https://github.com/joe-davidson1802/xc/actions/workflows/docs.yml/badge.svg)](https://github.com/joe-davidson1802/xc/actions/workflows/docs.yml)
[![Go Reference](https://pkg.go.dev/badge/github.com/joe-davidson1802/xc.svg)](https://pkg.go.dev/github.com/joe-davidson1802/xc)
[![test](https://github.com/joerdav/xc/actions/workflows/test.yaml/badge.svg)](https://github.com/joerdav/xc/actions/workflows/test.yaml)
[![docs](https://github.com/joerdav/xc/actions/workflows/docs.yml/badge.svg)](https://github.com/joerdav/xc/actions/workflows/docs.yml)
[![Go Reference](https://pkg.go.dev/badge/github.com/joerdav/xc.svg)](https://pkg.go.dev/github.com/joerdav/xc)

![xc](https://user-images.githubusercontent.com/19927761/156772881-10065864-ff4d-4225-ab2b-5adbbe628845.png)


[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.

Expand All @@ -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
Expand All @@ -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
```

Expand Down
6 changes: 3 additions & 3 deletions doc/content/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 %}}
Expand Down
2 changes: 1 addition & 1 deletion doc/layouts/_default/single.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ <h1>{{ .LinkTitle }}</h1>
<div class="description">{{ .Description }}</div>
<a class="header-link"
target="_blank"
href="https://github.com/joe-davidson1802/xc/blob/main/doc/content/{{.File.Path }}">
href="https://github.com/joerdav/xc/blob/main/doc/content/{{.File.Path }}">
[edit]
</a>
</div>
Expand Down
2 changes: 1 addition & 1 deletion doc/layouts/partials/sidebar.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div class="layout--logo">
<a class="logo" href="http://github.com/joe-davidson1802/xc">
<a class="logo" href="http://github.com/joerdav/xc">
{{ partial "xc.svg" }}
</a>
</div>
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/joe-davidson1802/xc
module github.com/joerdav/xc

go 1.16

Expand Down
2 changes: 1 addition & 1 deletion parser/parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"io"
"strings"

"github.com/joe-davidson1802/xc/models"
"github.com/joerdav/xc/models"
)

// TRIM_VALUES are the characters that should be ignored in titles and attributes
Expand Down
2 changes: 1 addition & 1 deletion parser/parser_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"testing"

"github.com/google/go-cmp/cmp"
"github.com/joe-davidson1802/xc/models"
"github.com/joerdav/xc/models"
)

//go:embed testdata/example.md
Expand Down
2 changes: 1 addition & 1 deletion run/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"runtime"
"strings"

"github.com/joe-davidson1802/xc/models"
"github.com/joerdav/xc/models"
)

const MAX_DEPS = 50
Expand Down
2 changes: 1 addition & 1 deletion run/run_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"testing"

"github.com/google/go-cmp/cmp"
"github.com/joe-davidson1802/xc/models"
"github.com/joerdav/xc/models"
)

func TestRun(t *testing.T) {
Expand Down

0 comments on commit 0478581

Please sign in to comment.